Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 9818e19

Browse files
committed
Add deprecation notice to the docs
1 parent 05e13e3 commit 9818e19

File tree

4 files changed

+31
-2
lines changed

4 files changed

+31
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ Updates and Changes
2424
### Security
2525
-->
2626

27+
## [0.8.1.5] - 2023-10-24
28+
### Changed
29+
- Add deprecation notice to the docs
30+
2731
## [0.8.1.4] - 2023-10-24
2832
### Changed
2933
- Remove maintainer contact info

doc/source/index.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,31 @@
55
66
ConfigParserEnhanced
77
====================
8+
9+
.. admonition:: DEPRECATION NOTICE
10+
11+
This package was forked by the original author and subdivided into separate
12+
packages:
13+
14+
* ``ConfigParserEnhanced`` ⟶ ``ActiveConfigParser``
15+
(`GitLab <https://gitlab.com/semantik-software/code/python/ActiveConfigParser>`__,
16+
`PyPI <https://pypi.org/project/activeconfigparser/>`__,
17+
`Docs <https://semantik-software.gitlab.io/code/python/ActiveConfigParser/>`__)
18+
* ``Debuggable`` ⟶ ``LightweightDebugMessages``
19+
(`GitLab <https://gitlab.com/semantik-software/code/python/LightweightDebugMessages>`__,
20+
`PyPI <https://pypi.org/project/lightweightdebugmessages/>`__,
21+
`Docs <https://semantik-software.gitlab.io/code/python/LightweightDebugMessages>`__)
22+
* ``ExceptionControl`` ⟶ ``ExceptionControl``
23+
(`GitLab <https://gitlab.com/semantik-software/code/python/ExceptionControl>`__,
24+
`PyPI <https://pypi.org/project/exceptioncontrol/>`__,
25+
`Docs <https://semantik-software.gitlab.io/code/python/ExceptionControl>`__)
26+
* ``TypedProperty`` ⟶ ``StronglyTypedProperty``
27+
(`GitLab <https://gitlab.com/semantik-software/code/python/StronglyTypedProperty>`__,
28+
`PyPI <https://pypi.org/project/stronglytypedproperty/>`__,
29+
`Docs <https://semantik-software.gitlab.io/code/python/StronglyTypedProperty>`__)
30+
31+
Users of ``ConfigParserEnhanced`` should switch to the new packages.
32+
833
.. toctree::
934
:maxdepth: 1
1035
:caption: Table of Contents:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "configparserenhanced"
33
description = "A tool that extends configparser to enable enhanced processing of .ini files."
4-
version = "0.8.1.4"
4+
version = "0.8.1.5"
55
license = "LICENSE"
66
readme = "README.md"
77
keywords = [

src/configparserenhanced/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@
4545

4646
# Note, when updating this, the docstring in ConfigParserEnhanced
4747
# and in pyproject.toml should also be updated
48-
__version__ = "0.8.1.4"
48+
__version__ = "0.8.1.5"

0 commit comments

Comments
 (0)