diff --git a/CHANGES.rst b/CHANGES.rst index ca27a11..828944e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,51 @@ Changelog .. towncrier release notes start +0.2.1 +===== + +*(2024-12-01)* + + +Bug fixes +--------- + +- Stopped implicitly allowing the use of Cython pre-release versions when + building the distribution package -- by :user:`ajsanchezsanz` and + :user:`markgreene74`. + + *Related commits on GitHub:* + :commit:`64df0a6`. + +- Fixed ``wrapped`` and ``func`` not being accessible in the Cython versions of :func:`propcache.api.cached_property` and :func:`propcache.api.under_cached_property` decorators -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`72`. + + +Removals and backward incompatible breaking changes +--------------------------------------------------- + +- Removed support for Python 3.8 as it has reached end of life -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`57`. + + +Packaging updates and notes for downstreams +------------------------------------------- + +- Stopped implicitly allowing the use of Cython pre-release versions when + building the distribution package -- by :user:`ajsanchezsanz` and + :user:`markgreene74`. + + *Related commits on GitHub:* + :commit:`64df0a6`. + + +---- + + 0.2.0 ===== diff --git a/CHANGES/57.breaking.rst b/CHANGES/57.breaking.rst deleted file mode 100644 index aa65aed..0000000 --- a/CHANGES/57.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Removed support for Python 3.8 as it has reached end of life -- by :user:`bdraco`. diff --git a/CHANGES/64df0a6.bugfix.rst b/CHANGES/64df0a6.bugfix.rst deleted file mode 100644 index be95775..0000000 --- a/CHANGES/64df0a6.bugfix.rst +++ /dev/null @@ -1,3 +0,0 @@ -Stopped implicitly allowing the use of Cython pre-release versions when -building the distribution package -- by :user:`ajsanchezsanz` and -:user:`markgreene74`. diff --git a/CHANGES/64df0a6.packaging.rst b/CHANGES/64df0a6.packaging.rst deleted file mode 120000 index 159d319..0000000 --- a/CHANGES/64df0a6.packaging.rst +++ /dev/null @@ -1 +0,0 @@ -64df0a6.bugfix.rst \ No newline at end of file diff --git a/CHANGES/72.bugfix.rst b/CHANGES/72.bugfix.rst deleted file mode 100644 index 17b1b44..0000000 --- a/CHANGES/72.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed ``wrapped`` and ``func`` not being accessible in the Cython versions of :func:`propcache.api.cached_property` and :func:`propcache.api.under_cached_property` decorators -- by :user:`bdraco`. diff --git a/src/propcache/__init__.py b/src/propcache/__init__.py index 379d165..abf4a57 100644 --- a/src/propcache/__init__.py +++ b/src/propcache/__init__.py @@ -4,7 +4,7 @@ _PUBLIC_API = ("cached_property", "under_cached_property") -__version__ = "0.2.1.dev0" +__version__ = "0.2.1" __all__ = () # Imports have moved to `propcache.api` in 0.2.0+.