From d3411a64c25222961e2c2883677af5084cb3f9cd Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Mon, 14 Aug 2023 17:05:31 +0100 Subject: [PATCH] Bump to 1.0.5 final --- CHANGES | 5 +++++ sphinxcontrib/devhelp/__init__.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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')