From 3c042244aaa1b69d7a868fed02ca57076c4721de Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Tue, 19 Mar 2024 13:25:32 -0400 Subject: [PATCH] pyproject: bump protobuf specs (#943) * pyproject: bump protobuf specs Signed-off-by: William Woodruff * pyproject: loosen constraint Signed-off-by: William Woodruff * CHANGELOG: record change Signed-off-by: William Woodruff * CHANGELOG: prep 2.1.3 Signed-off-by: William Woodruff * sigstore: 2.1.3 Signed-off-by: William Woodruff --------- Signed-off-by: William Woodruff --- CHANGELOG.md | 11 ++++++++++- pyproject.toml | 2 +- sigstore/__init__.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c65afeab..e5e5ce46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ All versions prior to 0.9.0 are untracked. ## [Unreleased] +## [2.1.3] + +## Fixed + +* Loosened a version constraint on the `sigstore-protobuf-specs` dependency, + to ease use in testing environments + ([#943](https://github.com/sigstore/sigstore-python/pull/943)) + ## [2.1.2] This is a corrective release for [2.1.1]. @@ -308,7 +316,8 @@ This is a corrective release for [2.1.1]. ([#351](https://github.com/sigstore/sigstore-python/pull/351)) -[Unreleased]: https://github.com/sigstore/sigstore-python/compare/v2.1.2...HEAD +[Unreleased]: https://github.com/sigstore/sigstore-python/compare/v2.1.3...HEAD +[2.1.3]: https://github.com/sigstore/sigstore-python/compare/v2.1.2...v2.1.3 [2.1.2]: https://github.com/sigstore/sigstore-python/compare/v2.1.1...v2.1.2 [2.1.1]: https://github.com/sigstore/sigstore-python/compare/v2.1.0...v2.1.1 [2.1.0]: https://github.com/sigstore/sigstore-python/compare/v2.0.1...v2.1.0 diff --git a/pyproject.toml b/pyproject.toml index da614bcf..cfcc032d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ dependencies = [ "requests", "rich ~= 13.0", "securesystemslib", - "sigstore-protobuf-specs ~= 0.2.2", + "sigstore-protobuf-specs >= 0.2.2, < 0.4", # NOTE(ww): Under active development, so strictly pinned. "sigstore-rekor-types == 0.0.11", "tuf >= 2.1,< 4.0", diff --git a/sigstore/__init__.py b/sigstore/__init__.py index 49a5d87e..31041042 100644 --- a/sigstore/__init__.py +++ b/sigstore/__init__.py @@ -25,4 +25,4 @@ * `sigstore.sign`: creation of Sigstore signatures """ -__version__ = "2.1.2" +__version__ = "2.1.3"