Skip to content

Commit f64ca5b

Browse files
authored
Prepare v0.6.0 release (#118)
1 parent a857fb9 commit f64ca5b

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
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.6.0]
14+
15+
### Changed
16+
17+
- Migrated from Google Cloud Storage to the official Go downloads API at go.dev/dl to resolve HTTP 403 errors when downloading Go binaries. [#117](https://github.com/andrewkroh/gvm/pull/117)
18+
1319
## [0.5.3]
1420

1521
### Changed
@@ -175,8 +181,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
175181

176182
Initial release.
177183

178-
[Unreleased]: https://github.com/andrewkroh/gvm/compare/v0.5.3...HEAD
179-
[0.5.2]: https://github.com/andrewkroh/gvm/releases/tag/v0.5.3
184+
[Unreleased]: https://github.com/andrewkroh/gvm/compare/v0.6.0...HEAD
185+
[0.6.0]: https://github.com/andrewkroh/gvm/releases/tag/v0.6.0
186+
[0.5.3]: https://github.com/andrewkroh/gvm/releases/tag/v0.5.3
180187
[0.5.2]: https://github.com/andrewkroh/gvm/releases/tag/v0.5.2
181188
[0.5.1]: https://github.com/andrewkroh/gvm/releases/tag/v0.5.1
182189
[0.5.0]: https://github.com/andrewkroh/gvm/releases/tag/v0.5.0

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Linux (amd64):
3333

3434
``` bash
3535
# Linux Example (assumes ~/bin is in PATH).
36-
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.2/gvm-linux-amd64
36+
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.6.0/gvm-linux-amd64
3737
chmod +x ~/bin/gvm
3838
eval "$(gvm 1.25.3)"
3939
go version
@@ -43,7 +43,7 @@ Linux (arm64):
4343

4444
``` bash
4545
# Linux Example (assumes ~/bin is in PATH).
46-
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.2/gvm-linux-arm64
46+
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.6.0/gvm-linux-arm64
4747
chmod +x ~/bin/gvm
4848
eval "$(gvm 1.25.3)"
4949
go version
@@ -53,7 +53,7 @@ macOS (universal):
5353

5454
``` bash
5555
# macOS Example
56-
curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.2/gvm-darwin-all
56+
curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.6.0/gvm-darwin-all
5757
chmod +x /usr/local/bin/gvm
5858
eval "$(gvm 1.25.3)"
5959
go version
@@ -63,7 +63,7 @@ Windows (PowerShell):
6363

6464
```
6565
[Net.ServicePointManager]::SecurityProtocol = "tls12"
66-
Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.5.2/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
66+
Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.6.0/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
6767
gvm --format=powershell 1.25.3 | Invoke-Expression
6868
go version
6969
```
@@ -74,4 +74,4 @@ Use `gvm` with fish shell by executing `gvm 1.25.3 | source` in lieu of using `e
7474

7575
For existing Go users:
7676

77-
`go install github.com/andrewkroh/gvm/cmd/gvm@v0.5.2`
77+
`go install github.com/andrewkroh/gvm/cmd/gvm@v0.6.0`

0 commit comments

Comments
 (0)