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
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:
if: startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
needs: [check-tests, check-dev]
environment: pypi
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.14'
- run: pip install --upgrade pip uv
- run: uv build
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_token }}
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Versioning].

## [Unreleased]

## [1.2.0] - 2026-05-19

- Drop support for Python 3.7, Python 3.8 and PyPy3.8.
- Add tests with Python 3.14 and PyPy3.11.
- Improve performance by reducing the AES plaintext size. Note: this changes the
Expand Down Expand Up @@ -43,7 +45,8 @@ Versioning].

[Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
[Unreleased]: https://github.com/bbc2/shuffled/compare/1.1.0...main
[Unreleased]: https://github.com/bbc2/shuffled/compare/1.2.0...main
[1.2.0]: https://github.com/bbc2/shuffled/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/bbc2/shuffled/compare/1.0.2...1.1.0
[1.0.2]: https://github.com/bbc2/shuffled/compare/1.0.1...1.0.2
[1.0.1]: https://github.com/bbc2/shuffled/compare/1.0.0...1.0.1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[project]
name = "shuffled"
version = "1.1.0"
version = "1.2.0"
description = "Iterate randomly over integer ranges"
readme = "README.md"
requires-python = ">=3.9"
Expand Down