Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,51 @@ Changelog

.. towncrier release notes start
v1.8.0
======

*(2025-10-05)*


Contributor-facing changes
--------------------------

- The :file:`reusable-cibuildwheel.yml` workflow has been refactored to
be more generic and :file:`ci-cd.yml` now holds all the configuration
toggles -- by :user:`webknjaz`.

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

- When building wheels, the source distribution is now passed directly
to the ``cibuildwheel`` invocation -- by :user:`webknjaz`.

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

- Builds and tests have been added to
``ci-cd.yml`` for arm64 Windows wheels -- by :user:`finnagin`.

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

- Started building wheels for CPython 3.14 -- by :user:`kumaraditya303`.

*Related issues and pull requests on GitHub:*
:issue:`681`, :issue:`682`.

- Removed ``--config-settings=pure-python=false`` from :file:`requirements/dev.txt`.
Developers on CPython still get accelerated builds by default. To explicitly build
a pure Python wheel, use ``pip install -e . --config-settings=pure-python=true``
-- by :user:`bdraco`.

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


----


v1.7.0
======

Expand Down
3 changes: 0 additions & 3 deletions CHANGES/668.contrib.rst

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/669.contrib.rst

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/677.contrib.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/681.contrib.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/682.contrib.rst

This file was deleted.

4 changes: 0 additions & 4 deletions CHANGES/687.contrib.rst

This file was deleted.

2 changes: 1 addition & 1 deletion frozenlist/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from collections.abc import MutableSequence
from functools import total_ordering

__version__ = "1.7.1.dev0"
__version__ = "1.8.0"

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

Expand Down
Loading