diff --git a/CHANGELOG.md b/CHANGELOG.md index 62bffde..225313f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v1.3.0](https://github.com/Songmu/tagpr/compare/v1.2.0...v1.3.0) - 2024-05-15 +- fix: Typo in README by @tgeorg-ethz in https://github.com/Songmu/tagpr/pull/172 +- Add showGHError() by @fujiwara in https://github.com/Songmu/tagpr/pull/173 + ## [v1.2.0](https://github.com/Songmu/tagpr/compare/v1.1.4...v1.2.0) - 2023-12-31 - update: added configuration of Github Enteprise by @ponkio-o in https://github.com/Songmu/tagpr/pull/162 - Refer to the next version with command by @k2tzumi in https://github.com/Songmu/tagpr/pull/165 diff --git a/action.yml b/action.yml index 8a55e26..452b109 100644 --- a/action.yml +++ b/action.yml @@ -5,7 +5,7 @@ inputs: version: description: "A version to install tagpr" required: false - default: "v1.2.0" + default: "v1.3.0" outputs: tag: description: "The semver tag, which is output only when the tagpr has tagged" diff --git a/version.go b/version.go index cc0c688..cfe6ab2 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package tagpr -const version = "1.2.0" +const version = "1.3.0" var revision = "HEAD"