Skip to content

Commit d134513

Browse files
authored
pyproject: constrain cryptography < 44 (#1229)
1 parent 77c0ae1 commit d134513

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,18 @@ All versions prior to 0.9.0 are untracked.
3030
verifying legacy bundles was never shown
3131
([#1198](https://github.com/sigstore/sigstore-python/pull/1198))
3232

33+
## [3.5.3]
34+
35+
### Fixed
36+
37+
* Corrective release for [3.5.2]
38+
39+
## [3.5.2]
40+
41+
### Fixed
42+
43+
* Pinned `cryptography` dependency strictly to prevent future breakage
44+
3345
## [3.5.1]
3446

3547
### Fixed
@@ -561,7 +573,9 @@ This is a corrective release for [2.1.1].
561573

562574

563575
<!--Release URLs -->
564-
[Unreleased]: https://github.com/sigstore/sigstore-python/compare/v3.5.1...HEAD
576+
[Unreleased]: https://github.com/sigstore/sigstore-python/compare/v3.5.3...HEAD
577+
[3.5.3]: https://github.com/sigstore/sigstore-python/compare/v3.5.2...v3.5.3
578+
[3.5.2]: https://github.com/sigstore/sigstore-python/compare/v3.5.1...v3.5.2
565579
[3.5.1]: https://github.com/sigstore/sigstore-python/compare/v3.5.0...v3.5.1
566580
[3.5.0]: https://github.com/sigstore/sigstore-python/compare/v3.4.0...v3.5.0
567581
[3.4.0]: https://github.com/sigstore/sigstore-python/compare/v3.3.0...v3.4.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
"Topic :: Security :: Cryptography",
2727
]
2828
dependencies = [
29-
"cryptography >= 42",
29+
"cryptography >= 42, < 44",
3030
"id >= 1.1.0",
3131
"importlib_resources ~= 5.7; python_version < '3.11'",
3232
"pyasn1 ~= 0.6",

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.5.1"
28+
__version__ = "3.5.3"

0 commit comments

Comments
 (0)