Skip to content

Commit 053a50c

Browse files
authored
chore: prep v0.0.27 (#128)
1 parent 9464aa3 commit 053a50c

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.27]
11+
12+
### Fixed
13+
14+
- Verification now compares the distribution filenames of artifacts
15+
and attestations by parsing them first and comparing its components
16+
(i.e. normalized name, version, tags) instead of doing a filename
17+
string comparison. This fixes an issue where verification would fail
18+
due to the artifact filename having the wheel tags in a different
19+
order than the ones in the attestation.
20+
([#127](https://github.com/trailofbits/pypi-attestations/pull/127))
21+
1022
## [0.0.26]
1123

1224
### Fixed
@@ -303,7 +315,8 @@ This is a corrective release for [0.0.14].
303315

304316
- Initial implementation
305317

306-
[Unreleased]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.26...HEAD
318+
[Unreleased]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.27...HEAD
319+
[0.0.27]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.26...v0.0.27
307320
[0.0.26]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.25...v0.0.26
308321
[0.0.25]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.24...v0.0.25
309322
[0.0.24]: https://github.com/trailofbits/pypi-attestation-models/compare/v0.0.23...v0.0.24

src/pypi_attestations/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""The `pypi-attestations` APIs."""
22

3-
__version__ = "0.0.26"
3+
__version__ = "0.0.27"
44

55
from ._impl import (
66
Attestation,

0 commit comments

Comments
 (0)