From 3d1b1b6ef8cf71662c0b4e4a0313b56898d015b7 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Wed, 23 Apr 2025 10:39:29 -0400 Subject: [PATCH 1/2] chore: release: v0.0.25 Signed-off-by: William Woodruff --- CHANGELOG.md | 10 +++++++++- src/pypi_attestations/__init__.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10baeab..eccaa31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.25] + +### Fixed + +- Makes the `GooglePublisher` type and APIs public + ([#117](https://github.com/trailofbits/pypi-attestations/pull/117)) + ## [0.0.24] ### Added @@ -288,7 +295,8 @@ This is a corrective release for [0.0.14]. - Initial implementation -[Unreleased]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.24...HEAD +[Unreleased]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.25...HEAD +[0.0.25]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.24...v0.0.25 [0.0.24]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.23...v0.0.24 [0.0.23]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.22...v0.0.23 [0.0.22]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.21...v0.0.22 diff --git a/src/pypi_attestations/__init__.py b/src/pypi_attestations/__init__.py index b910e5b..5ef223b 100644 --- a/src/pypi_attestations/__init__.py +++ b/src/pypi_attestations/__init__.py @@ -1,6 +1,6 @@ """The `pypi-attestations` APIs.""" -__version__ = "0.0.24" +__version__ = "0.0.25" from ._impl import ( Attestation, From e386e207083ee3f07723dcdb3bbffffad060da74 Mon Sep 17 00:00:00 2001 From: Facundo Tuesca Date: Wed, 23 Apr 2025 16:42:17 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eccaa31..55d4e79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- Makes the `GooglePublisher` type and APIs public +- Make the `GooglePublisher` type and APIs public ([#117](https://github.com/trailofbits/pypi-attestations/pull/117)) ## [0.0.24]