Skip to content

Commit 94f4d15

Browse files
authored
Add an artifact for Apple M1 (darwin/arm64) (#42)
1 parent 830cdb4 commit 94f4d15

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
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

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff 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

113119
Initial 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

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Linux:
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
3535
chmod +x ~/bin/gvm
3636
eval "$(gvm 1.17.2)"
3737
go version
@@ -41,7 +41,7 @@ macOS:
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
4545
chmod +x /usr/local/bin/gvm
4646
eval "$(gvm 1.17.2)"
4747
go 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
5555
gvm --format=powershell 1.17.2 | Invoke-Expression
5656
go version
5757
```
@@ -62,4 +62,4 @@ Use `gvm` with fish shell by executing `gvm 1.17.2 | source` in lieu of using `e
6262

6363
For 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`

0 commit comments

Comments
 (0)