diff --git a/CHANGELOG.md b/CHANGELOG.md index a81688b..6a87bfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [v1.4.1](https://github.com/Songmu/tagpr/compare/v1.4.0...v1.4.1) - 2024-09-09 +- use static option to build tagpr binaries by @vvakame in https://github.com/Songmu/tagpr/pull/179 + ## [v1.4.0](https://github.com/Songmu/tagpr/compare/v1.3.0...v1.4.0) - 2024-08-11 - fix typo by @mocyuto in https://github.com/Songmu/tagpr/pull/175 - fix: Unstable search issue behavior by @snaka in https://github.com/Songmu/tagpr/pull/178 diff --git a/action.yml b/action.yml index 539cf2b..1bdc3dc 100644 --- a/action.yml +++ b/action.yml @@ -5,7 +5,7 @@ inputs: version: description: "A version to install tagpr" required: false - default: "v1.4.0" + default: "v1.4.1" outputs: tag: description: "The semver tag, which is output only when the tagpr has tagged" diff --git a/version.go b/version.go index f4dd0b1..4072ce1 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package tagpr -const version = "1.4.0" +const version = "1.4.1" var revision = "HEAD"