Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Release 0.2.1 #74

Merged
merged 1 commit into from
Dec 1, 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
45 changes: 45 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
=====

Expand Down
1 change: 0 additions & 1 deletion CHANGES/57.breaking.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/64df0a6.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/64df0a6.packaging.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/72.bugfix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/propcache/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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+.
Expand Down
Loading