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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.7.0
current_version = 1.7.1
commit = True
message =
Prepare for {new_version} release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -487,9 +487,9 @@ jobs:
mv dist/*-wheels/*.whl dist/
rmdir dist/{sdist,*-wheels}
ls -R dist
- name: Avoid publishing Python 3.15 wheels
- name: Avoid publishing Python 3.16 wheels as its ABI is not yet frozen
run: |
rm -f dist/*cp315*
rm -f dist/*cp316*
ls -R dist
- uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
with:
Expand Down
21 changes: 21 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,27 @@ Changelog

.. towncrier release notes start

pystack 1.7.1 (2026-08-07)
--------------------------

Features
~~~~~~~~

- Wheels for Python 3.15 are now published. (#342)

Bug Fixes
~~~~~~~~~

- Our locating of the ``_PyRuntime`` symbol has been made more robust. (#336)
- An incompatibility with Python 3.15 introduced in 3.15.0b4 has been fixed. (#337)

Miscellaneous
~~~~~~~~~~~~~

- We now publish ``abi3`` wheels for Python 3.12 and later. (#331)
- Release builds of PyStack are now built with LTO (Link Time Optimization) enabled. (#330)
- Editable installs of PyStack are now built with ``-Og`` (optimizations suitable for debugging) enabled. (#330)

pystack 1.7.0 (2026-07-09)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/pystack/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.7.0"
__version__ = "1.7.1"
Loading