File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed
Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 3535 -output='build/bin/{{.Dir}}-{{.OS}}-{{.Arch}}' \
3636 -os='windows linux darwin freebsd' \
3737 -arch='amd64 386 arm arm64' \
38- -osarch='!darwin/386 !darwin/arm !darwin/arm64 ' ./cmd/gvm
38+ -osarch='!darwin/386 !darwin/arm' ./cmd/gvm
3939
4040 - name : create draft release
4141 id : create_release
Original file line number Diff line number Diff line change @@ -10,6 +10,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1010
1111### Added
1212
13+ ## [ 0.3.2]
14+
15+ ### Added
16+
17+ - Add an artifact for Apple M1 (darwin/arm64).
18+
1319## [ 0.3.1]
1420
1521### Changed
@@ -112,7 +118,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
112118
113119Initial release.
114120
115- [ Unreleased ] : https://github.com/andrewkroh/gvm/compare/v0.3.1...HEAD
121+ [ Unreleased ] : https://github.com/andrewkroh/gvm/compare/v0.3.2...HEAD
122+ [ 0.3.2 ] : https://github.com/andrewkroh/gvm/releases/tag/v0.3.2
116123[ 0.3.1 ] : https://github.com/andrewkroh/gvm/releases/tag/v0.3.1
117124[ 0.3.0 ] : https://github.com/andrewkroh/gvm/releases/tag/v0.3.0
118125[ 0.2.4 ] : https://github.com/andrewkroh/gvm/releases/tag/v0.2.4
Original file line number Diff line number Diff line change 3131
3232``` bash
3333# Linux Example (assumes ~/bin is in PATH).
34- curl -sL -o ~ /bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.1 /gvm-linux-amd64
34+ curl -sL -o ~ /bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.2 /gvm-linux-amd64
3535chmod +x ~ /bin/gvm
3636eval " $( gvm 1.17.2) "
3737go version
4141
4242``` bash
4343# macOS Example
44- curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.1 /gvm-darwin-amd64
44+ curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.2 /gvm-darwin-amd64
4545chmod +x /usr/local/bin/gvm
4646eval " $( gvm 1.17.2) "
4747go version
@@ -51,7 +51,7 @@ Windows (Powershell):
5151
5252```
5353[Net.ServicePointManager]::SecurityProtocol = "tls12"
54- Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.3.1 /gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
54+ Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.3.2 /gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
5555gvm --format=powershell 1.17.2 | Invoke-Expression
5656go version
5757```
@@ -62,4 +62,4 @@ Use `gvm` with fish shell by executing `gvm 1.17.2 | source` in lieu of using `e
6262
6363For existing Go users:
6464
65- ` go install github.com/andrewkroh/gvm/cmd/gvm@v0.3.1 `
65+ ` go install github.com/andrewkroh/gvm/cmd/gvm@v0.3.2 `
You can’t perform that action at this time.
0 commit comments