From 46704a9f918921b372eb0574e14ebbf3649d5be7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 20 Jan 2023 04:59:34 +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 3a2aab0..530012a 100644 --- a/action.yml +++ b/action.yml @@ -5,7 +5,7 @@ inputs: version: description: "A version to install tagpr" required: false - default: "v1.1.1" + default: "v1.1.2" outputs: tag: description: "The semver tag, which is output only when the tagpr has tagged" diff --git a/version.go b/version.go index 1396a55..8e94052 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package tagpr -const version = "1.1.1" +const version = "1.1.2" var revision = "HEAD" From 97e2b63d5c886c06b649bd870da77df6b6b02caf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 20 Jan 2023 04:59:35 +0000 Subject: [PATCH 2/2] [tagpr] update CHANGELOG.md --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cecb7b..d08eab6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [v1.1.2](https://github.com/Songmu/tagpr/compare/v1.1.1...v1.1.2) - 2023-01-20 +- fix: Bug fixes related to #144 by @toritori0318 in https://github.com/Songmu/tagpr/pull/148 + ## [v1.1.1](https://github.com/Songmu/tagpr/compare/v1.1.0...v1.1.1) - 2023-01-18 - fix: skip version file detection by @toritori0318 in https://github.com/Songmu/tagpr/pull/145