Skip to content

Commit 1c609e5

Browse files
authored
Release 0.3.2 (#119)
1 parent c9972fa commit 1c609e5

File tree

5 files changed

+37
-8
lines changed

5 files changed

+37
-8
lines changed

CHANGES.rst

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,42 @@ Changelog
1414

1515
.. towncrier release notes start
1616
17+
0.3.2
18+
=====
19+
20+
*(2025-06-09)*
21+
22+
23+
Improved documentation
24+
----------------------
25+
26+
- Fixed incorrect decorator usage in the :func:`~propcache.api.under_cached_property` example code -- by :user:`meanmail`.
27+
28+
*Related issues and pull requests on GitHub:*
29+
:issue:`109`.
30+
31+
32+
Packaging updates and notes for downstreams
33+
-------------------------------------------
34+
35+
- Updated to use Cython 3.1 universally across the build path -- by :user:`lysnikolaou`.
36+
37+
*Related issues and pull requests on GitHub:*
38+
:issue:`117`.
39+
40+
- Made Cython line tracing opt-in via the ``with-cython-tracing`` build config setting -- by :user:`bdraco`.
41+
42+
Previously, line tracing was enabled by default in :file:`pyproject.toml`, which caused build issues for some users and made wheels nearly twice as slow.
43+
44+
Now line tracing is only enabled when explicitly requested via ``pip install . --config-setting=with-cython-tracing=true`` or by setting the ``PROPCACHE_CYTHON_TRACING`` environment variable.
45+
46+
*Related issues and pull requests on GitHub:*
47+
:issue:`118`.
48+
49+
50+
----
51+
52+
1753
0.3.1
1854
=====
1955

CHANGES/109.doc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/117.packaging.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/118.packaging.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/propcache/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
_PUBLIC_API = ("cached_property", "under_cached_property")
66

7-
__version__ = "0.3.1"
7+
__version__ = "0.3.2"
88
__all__ = ()
99

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

0 commit comments

Comments
 (0)