From 303c7ef672c030b9e5da70ec6c6fe752061805cf Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Mon, 14 Aug 2023 17:04:54 +0100 Subject: [PATCH] Bump to 1.0.7 final --- CHANGES | 5 +++++ sphinxcontrib/applehelp/__init__.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index f3cc01c..c0b5341 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +Release 1.0.7 (2023-08-14) +========================== + +* Use ``os.PathLike`` over ``pathlib.Path`` + Release 1.0.6 (2023-08-09) ========================== diff --git a/sphinxcontrib/applehelp/__init__.py b/sphinxcontrib/applehelp/__init__.py index 476a976..6b49f6b 100644 --- a/sphinxcontrib/applehelp/__init__.py +++ b/sphinxcontrib/applehelp/__init__.py @@ -25,8 +25,8 @@ SkipProgressMessage, progress_message ) -__version__ = '1.0.6' -__version_info__ = (1, 0, 6) +__version__ = '1.0.7' +__version_info__ = (1, 0, 7) package_dir = path.abspath(path.dirname(__file__)) template_dir = path.join(package_dir, 'templates')