Skip to content

Commit b71742c

Browse files
authored
Release 1.6.1 (#656)
1 parent 3b494bb commit b71742c

File tree

5 files changed

+33
-4
lines changed

5 files changed

+33
-4
lines changed

CHANGES.rst

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

1515
.. towncrier release notes start
1616
17+
v1.6.1
18+
======
19+
20+
*(2025-06-02)*
21+
22+
23+
Bug fixes
24+
---------
25+
26+
- Correctly use ``cimport`` for including ``PyBool_FromLong`` -- by :user:`lysnikolaou`.
27+
28+
*Related issues and pull requests on GitHub:*
29+
:issue:`653`.
30+
31+
32+
Packaging updates and notes for downstreams
33+
-------------------------------------------
34+
35+
- Exclude ``_frozenlist.cpp`` from bdists/wheels -- by :user:`musicinmybrain`.
36+
37+
*Related issues and pull requests on GitHub:*
38+
:issue:`649`.
39+
40+
- Updated to use Cython 3.1 universally across the build path -- by :user:`lysnikolaou`.
41+
42+
*Related issues and pull requests on GitHub:*
43+
:issue:`654`.
44+
45+
46+
----
47+
48+
1749
v1.6.0
1850
======
1951

CHANGES/649.packaging

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

CHANGES/653.bugfix.rst

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

CHANGES/654.packaging.rst

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

frozenlist/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from collections.abc import MutableSequence
44
from functools import total_ordering
55

6-
__version__ = "1.6.1.dev0"
6+
__version__ = "1.6.1"
77

88
__all__ = ("FrozenList", "PyFrozenList") # type: Tuple[str, ...]
99

0 commit comments

Comments
 (0)