Skip to content

Commit 4c8207a

Browse files
authored
Release 1.6.0 (#643)
1 parent 58aef99 commit 4c8207a

File tree

10 files changed

+77
-18
lines changed

10 files changed

+77
-18
lines changed

CHANGES.rst

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

1515
.. towncrier release notes start
1616
17+
v1.6.0
18+
======
19+
20+
*(2025-04-17)*
21+
22+
23+
Bug fixes
24+
---------
25+
26+
- Stopped implicitly allowing the use of Cython pre-release versions when
27+
building the distribution package -- by :user:`ajsanchezsanz` and
28+
:user:`markgreene74`.
29+
30+
*Related commits on GitHub:*
31+
:commit:`41591f2`.
32+
33+
34+
Features
35+
--------
36+
37+
- Implemented support for the free-threaded build of CPython 3.13 -- by :user:`lysnikolaou`.
38+
39+
*Related issues and pull requests on GitHub:*
40+
:issue:`618`.
41+
42+
- Started building armv7l wheels -- by :user:`bdraco`.
43+
44+
*Related issues and pull requests on GitHub:*
45+
:issue:`642`.
46+
47+
48+
Packaging updates and notes for downstreams
49+
-------------------------------------------
50+
51+
- Stopped implicitly allowing the use of Cython pre-release versions when
52+
building the distribution package -- by :user:`ajsanchezsanz` and
53+
:user:`markgreene74`.
54+
55+
*Related commits on GitHub:*
56+
:commit:`41591f2`.
57+
58+
- Started building wheels for the free-threaded build of CPython 3.13 -- by :user:`lysnikolaou`.
59+
60+
*Related issues and pull requests on GitHub:*
61+
:issue:`618`.
62+
63+
- The packaging metadata switched to including an SPDX license identifier introduced in :pep:`639` -- by :user:`cdce8p`.
64+
65+
*Related issues and pull requests on GitHub:*
66+
:issue:`639`.
67+
68+
69+
Contributor-facing changes
70+
--------------------------
71+
72+
- GitHub Actions CI/CD is now configured to manage caching pip-ecosystem
73+
dependencies using `re-actors/cache-python-deps`_ -- an action by
74+
:user:`webknjaz` that takes into account ABI stability and the exact
75+
version of Python runtime.
76+
77+
.. _`re-actors/cache-python-deps`:
78+
https://github.com/marketplace/actions/cache-python-deps
79+
80+
*Related issues and pull requests on GitHub:*
81+
:issue:`633`.
82+
83+
- Organized dependencies into test and lint dependencies so that no
84+
unnecessary ones are installed during CI runs -- by :user:`lysnikolaou`.
85+
86+
*Related issues and pull requests on GitHub:*
87+
:issue:`636`.
88+
89+
90+
----
91+
92+
1793
1.5.0 (2024-10-22)
1894
==================
1995

CHANGES/41591f2.bugfix.rst

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

CHANGES/41591f2.packaging.rst

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

CHANGES/618.feature.rst

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

CHANGES/618.packaging.rst

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

CHANGES/633.contrib.rst

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

CHANGES/636.contrib.rst

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

CHANGES/639.packaging.rst

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

CHANGES/642.feature.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.5.1.dev0"
6+
__version__ = "1.6.0"
77

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

0 commit comments

Comments
 (0)