From 2dceec40ebff204d641d45e9cf1f6fa37fb6901f Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Tue, 4 Feb 2025 10:41:17 +0200 Subject: [PATCH] Prepare release 0.16 --- docs/CHANGELOG.md | 10 ++++++++++ repo/tuf_on_ci/_version.py | 2 +- signer/tuf_on_ci_sign/__init__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index be0aaa4..0861f9c 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,16 @@ ## Unreleased +## v0.16.0 + +This release contains minor improvements to both repository and signer. + +* Verify keyid calculation in signing event (#536) +* Improve error message when Yubikey authentication fails (#528) +* Improve python project metadata (#533) + +Updating a repository from 0.15 does not require changes in GitHub workflow files. + ## v0.15.2 This point release fixes a bug introduced in 0.14. diff --git a/repo/tuf_on_ci/_version.py b/repo/tuf_on_ci/_version.py index c0d4999..5a313cc 100644 --- a/repo/tuf_on_ci/_version.py +++ b/repo/tuf_on_ci/_version.py @@ -1 +1 @@ -__version__ = "0.15.2" +__version__ = "0.16.0" diff --git a/signer/tuf_on_ci_sign/__init__.py b/signer/tuf_on_ci_sign/__init__.py index d1ecd83..e2a7f63 100644 --- a/signer/tuf_on_ci_sign/__init__.py +++ b/signer/tuf_on_ci_sign/__init__.py @@ -2,6 +2,6 @@ from tuf_on_ci_sign.import_repo import import_repo from tuf_on_ci_sign.sign import sign -__version__ = "0.15.2" +__version__ = "0.16.0" __all__ = ["delegate", "import_repo", "sign"]