Skip to content

Commit 48324af

Browse files
authored
Release 1.8.0 (#698)
1 parent 7e5eab0 commit 48324af

File tree

8 files changed

+46
-14
lines changed

8 files changed

+46
-14
lines changed

CHANGES.rst

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

1515
.. towncrier release notes start
1616
17+
v1.8.0
18+
======
19+
20+
*(2025-10-05)*
21+
22+
23+
Contributor-facing changes
24+
--------------------------
25+
26+
- The :file:`reusable-cibuildwheel.yml` workflow has been refactored to
27+
be more generic and :file:`ci-cd.yml` now holds all the configuration
28+
toggles -- by :user:`webknjaz`.
29+
30+
*Related issues and pull requests on GitHub:*
31+
:issue:`668`.
32+
33+
- When building wheels, the source distribution is now passed directly
34+
to the ``cibuildwheel`` invocation -- by :user:`webknjaz`.
35+
36+
*Related issues and pull requests on GitHub:*
37+
:issue:`669`.
38+
39+
- Builds and tests have been added to
40+
``ci-cd.yml`` for arm64 Windows wheels -- by :user:`finnagin`.
41+
42+
*Related issues and pull requests on GitHub:*
43+
:issue:`677`.
44+
45+
- Started building wheels for CPython 3.14 -- by :user:`kumaraditya303`.
46+
47+
*Related issues and pull requests on GitHub:*
48+
:issue:`681`, :issue:`682`.
49+
50+
- Removed ``--config-settings=pure-python=false`` from :file:`requirements/dev.txt`.
51+
Developers on CPython still get accelerated builds by default. To explicitly build
52+
a pure Python wheel, use ``pip install -e . --config-settings=pure-python=true``
53+
-- by :user:`bdraco`.
54+
55+
*Related issues and pull requests on GitHub:*
56+
:issue:`687`.
57+
58+
59+
----
60+
61+
1762
v1.7.0
1863
======
1964

CHANGES/668.contrib.rst

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

CHANGES/669.contrib.rst

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

CHANGES/677.contrib.rst

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

CHANGES/681.contrib.rst

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

CHANGES/682.contrib.rst

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

CHANGES/687.contrib.rst

Lines changed: 0 additions & 4 deletions
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.7.1.dev0"
6+
__version__ = "1.8.0"
77

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

0 commit comments

Comments
 (0)