From 68a7497e48f8c596b60ac7b67647d4299367c713 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Thu, 24 Oct 2024 12:01:16 -0400 Subject: [PATCH] Prep 3.5.0 (#1184) --- CHANGELOG.md | 12 ++++++++++-- sigstore/__init__.py | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0232a9ac2..db23fe40f 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 4e5c9abe0..c8343f42f 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"