diff --git a/CHANGES b/CHANGES index e3b3ad7..23d73fa 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +Release 1.0.5 (2023-08-14) +========================== + +* Use ``os.PathLike`` over ``pathlib.Path`` + Release 1.0.4 (2023-08-09) ========================== diff --git a/sphinxcontrib/devhelp/__init__.py b/sphinxcontrib/devhelp/__init__.py index 39946ab..04b7248 100644 --- a/sphinxcontrib/devhelp/__init__.py +++ b/sphinxcontrib/devhelp/__init__.py @@ -26,8 +26,8 @@ except ImportError: import lxml.etree as etree # type: ignore -__version__ = '1.0.4' -__version_info__ = (1, 0, 4) +__version__ = '1.0.5' +__version_info__ = (1, 0, 5) logger = logging.getLogger(__name__) __ = get_translation(__name__, 'console')