diff --git a/CHANGELOG.md b/CHANGELOG.md index 0232a9ac..db23fe40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ All versions prior to 0.9.0 are untracked. ## [Unreleased] +## [3.5.0] + ### Added * CLI: The `sigstore plumbing update-trust-root` command has been added. @@ -15,6 +17,11 @@ All versions prior to 0.9.0 are untracked. changes are not subject to our semver policy until explicitly noted ([#1174](https://github.com/sigstore/sigstore-python/pull/1174)) +### Fixed + +* CLI: Fixed an incorrect warning when verifying detached `.crt`/`.sig` + inputs ([#1179](https://github.com/sigstore/sigstore-python/pull/1179)) + ## [3.4.0] ### Changed @@ -524,8 +531,9 @@ This is a corrective release for [2.1.1]. -[Unreleased]: https://github.com/sigstore/sigstore-python/compare/v3.4.0...HEAD -[3.3.0]: https://github.com/sigstore/sigstore-python/compare/v3.3.0...v3.4.0 +[Unreleased]: https://github.com/sigstore/sigstore-python/compare/v3.5.0...HEAD +[3.5.0]: https://github.com/sigstore/sigstore-python/compare/v3.4.0...v3.5.0 +[3.4.0]: https://github.com/sigstore/sigstore-python/compare/v3.3.0...v3.4.0 [3.3.0]: https://github.com/sigstore/sigstore-python/compare/v3.2.0...v3.3.0 [3.2.0]: https://github.com/sigstore/sigstore-python/compare/v3.1.0...v3.2.0 [3.1.0]: https://github.com/sigstore/sigstore-python/compare/v3.0.0...v3.1.0 diff --git a/sigstore/__init__.py b/sigstore/__init__.py index 4e5c9abe..c8343f42 100644 --- a/sigstore/__init__.py +++ b/sigstore/__init__.py @@ -25,4 +25,4 @@ * `sigstore.sign`: creation of Sigstore signatures """ -__version__ = "3.4.0" +__version__ = "3.5.0"