Skip to content

Commit

Permalink
Release 0.2.0 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Oct 7, 2024
1 parent 71d13ac commit 30abfef
Show file tree
Hide file tree
Showing 11 changed files with 53 additions and 12 deletions.
52 changes: 52 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,58 @@ Changelog

.. towncrier release notes start
0.2.0
=====

*(2024-10-07)*


Bug fixes
---------

- Fixed loading the C-extensions on Python 3.8 -- by :user:`bdraco`.

*Related issues and pull requests on GitHub:*
:issue:`26`.


Features
--------

- Improved typing for the :func:`propcache.api.under_cached_property` decorator -- by :user:`bdraco`.

*Related issues and pull requests on GitHub:*
:issue:`38`.


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`.


Packaging updates and notes for downstreams
-------------------------------------------

- Moved :func:`propcache.api.under_cached_property` and :func:`propcache.api.cached_property` to `propcache.api` -- by :user:`bdraco`.

Both decorators remain importable from the top-level package, however importing from `propcache.api` is now the recommended way to use them.

*Related issues and pull requests on GitHub:*
:issue:`19`, :issue:`24`, :issue:`32`.

- Converted project to use a src layout -- by :user:`bdraco`.

*Related issues and pull requests on GitHub:*
:issue:`22`, :issue:`29`, :issue:`37`.


----


0.1.0
=====

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

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/19.packaging.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/38.feature.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.0.dev0"
__version__ = "0.2.0"
__all__ = ()

# Imports have moved to `propcache.api` in 0.2.0+.
Expand Down

0 comments on commit 30abfef

Please sign in to comment.