Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Release 1.0.0 #21

Merged
merged 1 commit into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
=====

Expand Down
1 change: 0 additions & 1 deletion CHANGES/16.doc.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/19.breaking.rst

This file was deleted.

2 changes: 1 addition & 1 deletion propcache/__init__.py
Original file line number Diff line number Diff line change
@@ -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__ = ()
Loading