diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4272953..33e7faf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: -output='build/bin/{{.Dir}}-{{.OS}}-{{.Arch}}' \ -os='windows linux darwin freebsd' \ -arch='amd64 386 arm arm64' \ - -osarch='!darwin/386 !darwin/arm !darwin/arm64' ./cmd/gvm + -osarch='!darwin/386 !darwin/arm' ./cmd/gvm - name: create draft release id: create_release diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b8994e..571bd10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added +## [0.3.2] + +### Added + +- Add an artifact for Apple M1 (darwin/arm64). + ## [0.3.1] ### Changed @@ -112,7 +118,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). Initial release. -[Unreleased]: https://github.com/andrewkroh/gvm/compare/v0.3.1...HEAD +[Unreleased]: https://github.com/andrewkroh/gvm/compare/v0.3.2...HEAD +[0.3.2]: https://github.com/andrewkroh/gvm/releases/tag/v0.3.2 [0.3.1]: https://github.com/andrewkroh/gvm/releases/tag/v0.3.1 [0.3.0]: https://github.com/andrewkroh/gvm/releases/tag/v0.3.0 [0.2.4]: https://github.com/andrewkroh/gvm/releases/tag/v0.2.4 diff --git a/README.md b/README.md index 556d23a..1b296f8 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Linux: ``` bash # Linux Example (assumes ~/bin is in PATH). -curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.1/gvm-linux-amd64 +curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.2/gvm-linux-amd64 chmod +x ~/bin/gvm eval "$(gvm 1.17.2)" go version @@ -41,7 +41,7 @@ macOS: ``` bash # macOS Example -curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.1/gvm-darwin-amd64 +curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.2/gvm-darwin-amd64 chmod +x /usr/local/bin/gvm eval "$(gvm 1.17.2)" go version @@ -51,7 +51,7 @@ Windows (Powershell): ``` [Net.ServicePointManager]::SecurityProtocol = "tls12" -Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.3.1/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe +Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.3.2/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe gvm --format=powershell 1.17.2 | Invoke-Expression go version ``` @@ -62,4 +62,4 @@ Use `gvm` with fish shell by executing `gvm 1.17.2 | source` in lieu of using `e For existing Go users: -`go install github.com/andrewkroh/gvm/cmd/gvm@v0.3.1` +`go install github.com/andrewkroh/gvm/cmd/gvm@v0.3.2`