From a03251afb5acbd3c2faa6a53cd1fd9575bb1910e Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Wed, 17 Jul 2024 09:52:23 -0400 Subject: [PATCH] prep 0.0.9 Signed-off-by: William Woodruff --- CHANGELOG.md | 5 ++++- src/pypi_attestations/__init__.py | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d658ba4..4638930 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.9] + ### Added - The `Distribution` type and APIs have been added, allowing a user to supply @@ -99,7 +101,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial implementation -[Unreleased]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.8...HEAD +[Unreleased]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.9...HEAD +[0.0.9]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.8...v0.0.9 [0.0.8]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.7...v0.0.8 [0.0.7]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.6...v0.0.7 [0.0.6]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.5...v0.0.6 diff --git a/src/pypi_attestations/__init__.py b/src/pypi_attestations/__init__.py index 67fb828..3a56175 100644 --- a/src/pypi_attestations/__init__.py +++ b/src/pypi_attestations/__init__.py @@ -1,12 +1,13 @@ """The `pypi-attestations` APIs.""" -__version__ = "0.0.8" +__version__ = "0.0.9" from ._impl import ( Attestation, AttestationError, AttestationType, ConversionError, + Distribution, Envelope, TransparencyLogEntry, VerificationError, @@ -19,6 +20,7 @@ "AttestationType", "Envelope", "ConversionError", + "Distribution", "TransparencyLogEntry", "VerificationError", "VerificationMaterial",