From ba9298f556cb7668378f5da7d1f52e42fc012d02 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 7 Jan 2025 09:59:41 +0000 Subject: [PATCH 1/2] [tagpr] prepare for the next release --- action.yml | 2 +- version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 5a44b4e..75697cb 100644 --- a/action.yml +++ b/action.yml @@ -5,7 +5,7 @@ inputs: version: description: "A version to install tagpr" required: false - default: "v1.5.0" + default: "v1.5.1" config: description: "A path to the tagpr configuration file" required: false diff --git a/version.go b/version.go index c7212ac..332e60d 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package tagpr -const version = "1.5.0" +const version = "1.5.1" var revision = "HEAD" From 574733edbd23623e0bead4433a20274e14694698 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 7 Jan 2025 09:59:41 +0000 Subject: [PATCH 2/2] [tagpr] update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e37088..79a5d62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v1.5.1](https://github.com/Songmu/tagpr/compare/v1.5.0...v1.5.1) - 2025-01-07 +- versionfile.go: omit .github directory from processing by @fujiwara in https://github.com/Songmu/tagpr/pull/191 +- Use `releaseBranch` variable instead of the hard-coded "main" in `git log` command by @mmizutani in https://github.com/Songmu/tagpr/pull/190 + ## [v1.5.0](https://github.com/Songmu/tagpr/compare/v1.4.3...v1.5.0) - 2024-10-27 - Get the config file path from the environment variable by @5ouma in https://github.com/Songmu/tagpr/pull/186 - Specify a template text directly in the config file by @5ouma in https://github.com/Songmu/tagpr/pull/187