diff --git a/CHANGELOG.md b/CHANGELOG.md index a0b0dd8..e94963b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [v1.4.0](https://github.com/k1LoW/gh-setup/compare/v1.3.0...v1.4.0) - 2023-04-21 +- Support bzip2 by @k1LoW in https://github.com/k1LoW/gh-setup/pull/75 + ## [v1.3.0](https://github.com/k1LoW/gh-setup/compare/v1.2.2...v1.3.0) - 2023-03-27 - Fix option handling ( `--match` / `--strict` ) by @k1LoW in https://github.com/k1LoW/gh-setup/pull/72 - Fix `--match` score by @k1LoW in https://github.com/k1LoW/gh-setup/pull/73 diff --git a/action.yml b/action.yml index b90e3bb..04b0dbd 100644 --- a/action.yml +++ b/action.yml @@ -45,7 +45,7 @@ inputs: required: false gh-setup-version: description: "Version of gh-setup" - default: "v1.3.0" + default: "v1.4.0" required: false runs: using: "composite" diff --git a/version/version.go b/version/version.go index 1834e11..6aae2d4 100644 --- a/version/version.go +++ b/version/version.go @@ -4,4 +4,4 @@ package version const Name string = "gh-setup" // Version for this. -var Version = "1.3.0" +var Version = "1.4.0"