Skip to content

Commit 6a3b35c

Browse files
authored
Post 3.6.3 fixes (#1427)
1 parent 5d9b210 commit 6a3b35c

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

.github/workflows/pin-requirements.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ jobs:
7676
cache: "pip"
7777
cache-dependency-path: pyproject.toml
7878

79-
- run: pip install pip-tools
79+
- name: Install dependencies
80+
run: |
81+
pip install "pip < 25.1" # workaround issue 1426
82+
pip install pip-tools
8083
8184
- name: Compute version from tag
8285
run: |

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ All versions prior to 0.9.0 are untracked.
4343
still required.
4444
[#1381](https://github.com/sigstore/sigstore-python/pull/1381)
4545

46-
* Verify: Avoid hard failure if trusted root contains unsupported keytypes (as verification
47-
may succeed without that key).
48-
[#1424](https://github.com/sigstore/sigstore-python/pull/1424)
49-
5046
* CI: Timestamp Authority tests use latest release, not latest tag, of
5147
[sigstore/timestamp-authority](https://github.com/sigstore/timestamp-authority)
5248
[#1377](https://github.com/sigstore/sigstore-python/pull/1377)
@@ -79,6 +75,13 @@ All versions prior to 0.9.0 are untracked.
7975
Use `SigningContext.from_trust_config()` instead.
8076
[#1363](https://github.com/sigstore/sigstore-python/pull/1363)
8177

78+
## [3.6.3]
79+
80+
### Fixed
81+
82+
* Verify: Avoid hard failure if trusted root contains unsupported keytypes (as verification
83+
may succeed without that key).
84+
[#1425](https://github.com/sigstore/sigstore-python/pull/1425)
8285

8386
## [3.6.2]
8487

@@ -680,7 +683,8 @@ This is a corrective release for [2.1.1].
680683

681684

682685
<!--Release URLs -->
683-
[Unreleased]: https://github.com/sigstore/sigstore-python/compare/v3.6.2...HEAD
686+
[Unreleased]: https://github.com/sigstore/sigstore-python/compare/v3.6.3...HEAD
687+
[3.6.3]: https://github.com/sigstore/sigstore-python/compare/v3.6.2...v3.6.3
684688
[3.6.2]: https://github.com/sigstore/sigstore-python/compare/v3.6.1...v3.6.2
685689
[3.6.1]: https://github.com/sigstore/sigstore-python/compare/v3.6.0...v3.6.1
686690
[3.6.0]: https://github.com/sigstore/sigstore-python/compare/v3.5.3...v3.6.0

sigstore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
* `sigstore.sign`: creation of Sigstore signatures
2626
"""
2727

28-
__version__ = "3.6.2"
28+
__version__ = "3.6.3"

0 commit comments

Comments
 (0)