diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bbf3a8..e59089f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [v0.2.0](https://github.com/Songmu/tagpr/compare/v0.1.3...v0.2.0) - 2022-09-06 +- feat: Add flag to turn on or off creating/modifying CHANGELOG.md by @siketyan in https://github.com/Songmu/tagpr/pull/86 + ## [v0.1.3](https://github.com/Songmu/tagpr/compare/v0.1.2...v0.1.3) - 2022-09-05 - Fix a typo by @nghialv in https://github.com/Songmu/tagpr/pull/84 diff --git a/action.yml b/action.yml index d6ac511..fba79d0 100644 --- a/action.yml +++ b/action.yml @@ -4,7 +4,7 @@ inputs: version: description: "A version to install tagpr" required: false - default: "v0.1.3" + default: "v0.2.0" runs: using: "composite" steps: diff --git a/version.go b/version.go index 638628e..6a5eddb 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package tagpr -const version = "0.1.3" +const version = "0.2.0" var revision = "HEAD"