From fd4f1350a418826fb4fe2bd398c6812928eb6120 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 5 Oct 2024 20:26:25 -0500 Subject: [PATCH] Release 1.0.0 (#21) --- CHANGES.rst | 27 +++++++++++++++++++++++++++ CHANGES/16.doc.rst | 1 - CHANGES/19.breaking.rst | 1 - propcache/__init__.py | 2 +- 4 files changed, 28 insertions(+), 3 deletions(-) delete mode 100644 CHANGES/16.doc.rst delete mode 100644 CHANGES/19.breaking.rst diff --git a/CHANGES.rst b/CHANGES.rst index 93389b6..c7073c1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,33 @@ Changelog .. towncrier release notes start +1.0.0 +===== + +*(2024-10-05)* + + +Removals and backward incompatible breaking changes +--------------------------------------------------- + +- Moved :func:`propcache.api.under_cached_property` and :func:`propcache.api.cached_property` to ``propcache.api`` -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`19`. + + +Improved documentation +---------------------- + +- Added API documentation for the :func:`propcache.api.cached_property` and :func:`propcache.api.under_cached_property` decorators -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`16`. + + +---- + + 0.1.0 ===== diff --git a/CHANGES/16.doc.rst b/CHANGES/16.doc.rst deleted file mode 100644 index 4848aff..0000000 --- a/CHANGES/16.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Added API documentation for the :func:`propcache.api.cached_property` and :func:`propcache.api.under_cached_property` decorators -- by :user:`bdraco`. diff --git a/CHANGES/19.breaking.rst b/CHANGES/19.breaking.rst deleted file mode 100644 index 570eb08..0000000 --- a/CHANGES/19.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Moved :func:`propcache.api.under_cached_property` and :func:`propcache.api.cached_property` to ``propcache.api`` -- by :user:`bdraco`. diff --git a/propcache/__init__.py b/propcache/__init__.py index 5c9eaa6..fe60642 100644 --- a/propcache/__init__.py +++ b/propcache/__init__.py @@ -1,6 +1,6 @@ """propcache: An accelerated property cache for Python classes.""" -__version__ = "1.0.0.dev0" +__version__ = "1.0.0" # Imports have moved to `propcache.api` in 1.0.0+. __all__ = ()