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')