diff --git a/CHANGELOG.md b/CHANGELOG.md index 0024344..205f3fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [v1.7.0](https://github.com/k1LoW/gh-setup/compare/v1.6.0...v1.7.0) - 2023-07-11 +- Fix extension setup script by @k1LoW in https://github.com/k1LoW/gh-setup/pull/91 +- Support linux arm64 by @k1LoW in https://github.com/k1LoW/gh-setup/pull/93 +- Update pkgs and actions by @k1LoW in https://github.com/k1LoW/gh-setup/pull/94 + ## [v1.6.0](https://github.com/k1LoW/gh-setup/compare/v1.5.1...v1.6.0) - 2023-05-15 - Freeze host of repo by @k1LoW in https://github.com/k1LoW/gh-setup/pull/87 - Use `git tag` instead of `gh` by @k1LoW in https://github.com/k1LoW/gh-setup/pull/89 diff --git a/action.yml b/action.yml index 78e4976..bbafa77 100644 --- a/action.yml +++ b/action.yml @@ -45,7 +45,7 @@ inputs: required: false gh-setup-version: description: "Version of gh-setup" - default: "v1.6.0" + default: "v1.7.0" required: false runs: using: "composite" diff --git a/version/version.go b/version/version.go index 4e63609..49ab96d 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.6.0" +var Version = "1.7.0"