Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.21]

### Changed

- The CLI entrypoint is now `pypi-attestations`
([#82](https://github.com/trailofbits/pypi-attestations/pull/82))
- The CLI `verify` subcommand has been changed to `verify attestation`,
as in `pypi-attestations verify attestation --identity ...`
([#82](https://github.com/trailofbits/pypi-attestations/pull/82))

### Added
- The CLI has a new subcommand `verify pypi`, which takes a URL to a
PyPI distribution (either a wheel or a source distribution) and a
GitHub/GitLab repository. The command verifies the distribution by
downloading it and its provenance from PyPI, verifying them using
`sigstore` and checking that the repository matches the one in the
PyPI provenance file.
([#82](https://github.com/trailofbits/pypi-attestations/pull/82))

## [0.0.20]

### Changed
Expand Down Expand Up @@ -212,7 +231,8 @@ This is a corrective release for [0.0.14].

- Initial implementation

[Unreleased]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.20...HEAD
[Unreleased]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.21...HEAD
[0.0.21]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.20...v0.0.21
[0.0.20]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.19...v0.0.20
[0.0.19]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.18...v0.0.19
[0.0.18]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.17...v0.0.18
Expand Down
2 changes: 1 addition & 1 deletion src/pypi_attestations/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""The `pypi-attestations` APIs."""

__version__ = "0.0.20"
__version__ = "0.0.21"

from ._impl import (
Attestation,
Expand Down
Loading