Skip to content

Commit 89bc37c

Browse files
authored
Merge pull request #42 from bbc2/release-1.2.0
Release version 1.2.0
2 parents 09f4d2d + 242853c commit 89bc37c

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
if: startsWith(github.ref, 'refs/tags')
3131
runs-on: ubuntu-latest
3232
needs: [check-tests, check-dev]
33+
environment: pypi
34+
permissions:
35+
id-token: write
3336
steps:
34-
- uses: actions/checkout@v4
35-
- uses: actions/setup-python@v5
37+
- uses: actions/checkout@v6
38+
- uses: actions/setup-python@v6
3639
with:
3740
python-version: '3.14'
3841
- run: pip install --upgrade pip uv
3942
- run: uv build
4043
- uses: pypa/gh-action-pypi-publish@release/v1
41-
with:
42-
user: __token__
43-
password: ${{ secrets.pypi_token }}

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Versioning].
77

88
## [Unreleased]
99

10+
## [1.2.0] - 2026-05-19
11+
1012
- Drop support for Python 3.7, Python 3.8 and PyPy3.8.
1113
- Add tests with Python 3.14 and PyPy3.11.
1214
- Improve performance by reducing the AES plaintext size. Note: this changes the
@@ -43,7 +45,8 @@ Versioning].
4345

4446
[Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
4547
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
46-
[Unreleased]: https://github.com/bbc2/shuffled/compare/1.1.0...main
48+
[Unreleased]: https://github.com/bbc2/shuffled/compare/1.2.0...main
49+
[1.2.0]: https://github.com/bbc2/shuffled/compare/1.1.0...1.2.0
4750
[1.1.0]: https://github.com/bbc2/shuffled/compare/1.0.2...1.1.0
4851
[1.0.2]: https://github.com/bbc2/shuffled/compare/1.0.1...1.0.2
4952
[1.0.1]: https://github.com/bbc2/shuffled/compare/1.0.0...1.0.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[project]
33
name = "shuffled"
4-
version = "1.1.0"
4+
version = "1.2.0"
55
description = "Iterate randomly over integer ranges"
66
readme = "README.md"
77
requires-python = ">=3.9"

0 commit comments

Comments
 (0)