diff --git a/CHANGELOG.md b/CHANGELOG.md index b55cc674..8e7b75cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,10 @@ Updates and Changes ### Security --> +## [0.8.1.5] - 2023-10-24 +### Changed +- Add deprecation notice to the docs + ## [0.8.1.4] - 2023-10-24 ### Changed - Remove maintainer contact info diff --git a/doc/source/index.rst b/doc/source/index.rst index 76887418..f3a41059 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -5,6 +5,31 @@ ConfigParserEnhanced ==================== + +.. admonition:: DEPRECATION NOTICE + + This package was forked by the original author and subdivided into separate + packages: + + * ``ConfigParserEnhanced`` ⟶ ``ActiveConfigParser`` + (`GitLab `__, + `PyPI `__, + `Docs `__) + * ``Debuggable`` ⟶ ``LightweightDebugMessages`` + (`GitLab `__, + `PyPI `__, + `Docs `__) + * ``ExceptionControl`` ⟶ ``ExceptionControl`` + (`GitLab `__, + `PyPI `__, + `Docs `__) + * ``TypedProperty`` ⟶ ``StronglyTypedProperty`` + (`GitLab `__, + `PyPI `__, + `Docs `__) + + Users of ``ConfigParserEnhanced`` should switch to the new packages. + .. toctree:: :maxdepth: 1 :caption: Table of Contents: diff --git a/pyproject.toml b/pyproject.toml index 21a83ee8..88939114 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "configparserenhanced" description = "A tool that extends configparser to enable enhanced processing of .ini files." -version = "0.8.1.4" +version = "0.8.1.5" license = "LICENSE" readme = "README.md" keywords = [ diff --git a/src/configparserenhanced/version.py b/src/configparserenhanced/version.py index 0070abdd..751e86eb 100644 --- a/src/configparserenhanced/version.py +++ b/src/configparserenhanced/version.py @@ -45,4 +45,4 @@ # Note, when updating this, the docstring in ConfigParserEnhanced # and in pyproject.toml should also be updated -__version__ = "0.8.1.4" +__version__ = "0.8.1.5"