diff --git a/CHANGELOG.md b/CHANGELOG.md index cd3a2d0..8bd1299 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [v0.3.3](https://github.com/Songmu/tagpr/compare/v0.3.2...v0.3.3) - 2022-09-17 +- use install.sh in action.yml by @Songmu in https://github.com/Songmu/tagpr/pull/106 + ## [v0.3.2](https://github.com/Songmu/tagpr/compare/v0.3.1...v0.3.2) - 2022-09-17 - add vN tag after uploading artifacts by @Songmu in https://github.com/Songmu/tagpr/pull/103 - update dependencies by @Songmu in https://github.com/Songmu/tagpr/pull/105 diff --git a/action.yml b/action.yml index 09f8d0a..7df1275 100644 --- a/action.yml +++ b/action.yml @@ -4,7 +4,7 @@ inputs: version: description: "A version to install tagpr" required: false - default: "v0.3.2" + default: "v0.3.3" runs: using: "composite" steps: diff --git a/version.go b/version.go index e4ebe7a..95403fe 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package tagpr -const version = "0.3.2" +const version = "0.3.3" var revision = "HEAD"