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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,19 @@ All versions prior to 0.9.0 are untracked.

## [Unreleased]

## [3.6.5]

### Fixed

* Fixed verified time handling so that additional timestamps cannot break
otherwise valid signature bundles ([#1492](https://github.com/sigstore/sigstore-python/pull/1492))

### Changed

* Added cryptography 45 to list of compatible cryptography releases
([#1498](https://github.com/sigstore/sigstore-python/pull/1498))


## [3.6.4]

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
"Topic :: Security :: Cryptography",
]
dependencies = [
"cryptography >= 42, < 45",
"cryptography >= 42, < 46",
"id >= 1.1.0",
"importlib_resources ~= 5.7; python_version < '3.11'",
"pyasn1 ~= 0.6",
Expand Down
2 changes: 1 addition & 1 deletion sigstore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
* `sigstore.sign`: creation of Sigstore signatures
"""

__version__ = "3.6.4"
__version__ = "3.6.5"
Loading