diff --git a/CHANGELOG.md b/CHANGELOG.md index d058e55..a9e8321 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +- `AttestationType` has been added, as an enumeration of all currently known + attestation types (by URL) + ([#29](https://github.com/trailofbits/pypi-attestations/pull/29)) + +### Changed + +- `Attestation.verify` now checks the attestation's type against + `AttestationType` before returning it + ([#29](https://github.com/trailofbits/pypi-attestations/pull/29)) + ### Fixed -- `Attestation.sign` now only returns `AttestationError` when failing to sign a distribution file ([#28](https://github.com/trailofbits/pypi-attestations/pull/28)) +- `Attestation.sign` now only returns `AttestationError` when failing to sign a + distribution file + ([#28](https://github.com/trailofbits/pypi-attestations/pull/28)) ## [0.0.6] diff --git a/src/pypi_attestations/__init__.py b/src/pypi_attestations/__init__.py index d7b5b69..370f866 100644 --- a/src/pypi_attestations/__init__.py +++ b/src/pypi_attestations/__init__.py @@ -1,6 +1,6 @@ """The `pypi-attestations` APIs.""" -__version__ = "0.0.6" +__version__ = "0.0.7" from ._impl import ( Attestation,