From fc6440c4a181bb5022d559a12f4419e371b150a8 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Wed, 10 Jul 2024 14:19:26 -0400 Subject: [PATCH] re-export AttestationType Signed-off-by: William Woodruff --- CHANGELOG.md | 4 ++++ src/pypi_attestations/__init__.py | 2 ++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b13866..9ab04f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- `AttestationType` is now re-exported at the top-level as a public API + ## [0.0.7] ### Added diff --git a/src/pypi_attestations/__init__.py b/src/pypi_attestations/__init__.py index 370f866..74f505d 100644 --- a/src/pypi_attestations/__init__.py +++ b/src/pypi_attestations/__init__.py @@ -5,6 +5,7 @@ from ._impl import ( Attestation, AttestationError, + AttestationType, ConversionError, Envelope, TransparencyLogEntry, @@ -15,6 +16,7 @@ __all__ = [ "Attestation", "AttestationError", + "AttestationType", "Envelope", "ConversionError", "TransparencyLogEntry",