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 35
35
-output='build/bin/{{.Dir}}-{{.OS}}-{{.Arch}}' \
36
36
-os='windows linux darwin freebsd' \
37
37
-arch='amd64 386 arm arm64' \
38
- -osarch='!darwin/386 !darwin/arm !darwin/arm64 ' ./cmd/gvm
38
+ -osarch='!darwin/386 !darwin/arm' ./cmd/gvm
39
39
40
40
- name : create draft release
41
41
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/).
10
10
11
11
### Added
12
12
13
+ ## [ 0.3.2]
14
+
15
+ ### Added
16
+
17
+ - Add an artifact for Apple M1 (darwin/arm64).
18
+
13
19
## [ 0.3.1]
14
20
15
21
### Changed
@@ -112,7 +118,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
112
118
113
119
Initial release.
114
120
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
116
123
[ 0.3.1 ] : https://github.com/andrewkroh/gvm/releases/tag/v0.3.1
117
124
[ 0.3.0 ] : https://github.com/andrewkroh/gvm/releases/tag/v0.3.0
118
125
[ 0.2.4 ] : https://github.com/andrewkroh/gvm/releases/tag/v0.2.4
Original file line number Diff line number Diff line change 31
31
32
32
``` bash
33
33
# 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
35
35
chmod +x ~ /bin/gvm
36
36
eval " $( gvm 1.17.2) "
37
37
go version
41
41
42
42
``` bash
43
43
# 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
45
45
chmod +x /usr/local/bin/gvm
46
46
eval " $( gvm 1.17.2) "
47
47
go version
@@ -51,7 +51,7 @@ Windows (Powershell):
51
51
52
52
```
53
53
[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
55
55
gvm --format=powershell 1.17.2 | Invoke-Expression
56
56
go version
57
57
```
@@ -62,4 +62,4 @@ Use `gvm` with fish shell by executing `gvm 1.17.2 | source` in lieu of using `e
62
62
63
63
For existing Go users:
64
64
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