From 8ab0d233258768fd43cb1fe57c57629305b42ddb Mon Sep 17 00:00:00 2001 From: Fredrik Skogman Date: Tue, 21 Jan 2025 08:54:29 +0100 Subject: [PATCH] Prepare for release v0.15.2 Signed-off-by: Fredrik Skogman --- docs/CHANGELOG.md | 12 ++++++++++++ repo/tuf_on_ci/_version.py | 2 +- signer/tuf_on_ci_sign/__init__.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 9a01871..be0aaa4 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,18 @@ ## Unreleased +## v0.15.2 + +This point release fixes a bug introduced in 0.14. + +* Only return open pull requests (PR) when searching for a signing + event (#518). In cases where the signers rely on a fork to sign and + then create a PR back to the main repository, both PRs will contain + the same git commit at tip, and so multiple PRs would be returned, + now only open PRs are considered. + +Updating from 0.14 does not require any changes GitHub workflow files. + ## v0.15.1 This point release fixes a bug introduced in 0.15. diff --git a/repo/tuf_on_ci/_version.py b/repo/tuf_on_ci/_version.py index 903e77c..c0d4999 100644 --- a/repo/tuf_on_ci/_version.py +++ b/repo/tuf_on_ci/_version.py @@ -1 +1 @@ -__version__ = "0.15.1" +__version__ = "0.15.2" diff --git a/signer/tuf_on_ci_sign/__init__.py b/signer/tuf_on_ci_sign/__init__.py index 7ccb2fe..d1ecd83 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.1" +__version__ = "0.15.2" __all__ = ["delegate", "import_repo", "sign"]