Skip to content

Commit d3603b5

Browse files
committed
Prepare v0.5.2 release
1 parent ad4c3cd commit d3603b5

File tree

2 files changed

+25
-7
lines changed

2 files changed

+25
-7
lines changed

CHANGELOG.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,29 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1010

1111
### Added
1212

13+
## [0.5.2]
14+
15+
### Changed
16+
17+
- Add 10s wait between retries when there are download errors. [#65](https://github.com/andrewkroh/gvm/pull/65)
18+
19+
## [0.5.1]
20+
21+
### Changed
22+
23+
- This release is built with Go 1.20.7. [#63](https://github.com/andrewkroh/gvm/pull/63)
24+
25+
### Fixed
26+
27+
- Fixed installation of Go 1.21.0. Versioning conventions changed as per golang/go#57631. [#61](https://github.com/andrewkroh/gvm/issues/61)
28+
- Fixed issues unpacking tar files for Go 1.21.0 releases. Relates to golang/go#61862. [#61](https://github.com/andrewkroh/gvm/issues/61)
29+
1330
## [0.5.0]
1431

1532
### Changed
1633

1734
- Updated releases to use Go 1.18. [#54](https://github.com/andrewkroh/gvm/pull/54)
1835
- Report Go module version from `gvm --version` if installed via `go install`. [#57](https://github.com/andrewkroh/gvm/pull/57)
19-
- Add wait between retries when there are download errors. [#65](https://github.com/andrewkroh/gvm/pull/65)
2036

2137
### Fixed
2238

@@ -147,7 +163,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
147163

148164
Initial release.
149165

150-
[Unreleased]: https://github.com/andrewkroh/gvm/compare/v0.5.0...HEAD
166+
[Unreleased]: https://github.com/andrewkroh/gvm/compare/v0.5.2...HEAD
167+
[0.5.2]: https://github.com/andrewkroh/gvm/releases/tag/v0.5.2
168+
[0.5.1]: https://github.com/andrewkroh/gvm/releases/tag/v0.5.1
151169
[0.5.0]: https://github.com/andrewkroh/gvm/releases/tag/v0.5.0
152170
[0.4.1]: https://github.com/andrewkroh/gvm/releases/tag/v0.4.1
153171
[0.4.0]: https://github.com/andrewkroh/gvm/releases/tag/v0.4.0

README.md

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

3535
``` bash
3636
# Linux Example (assumes ~/bin is in PATH).
37-
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.1/gvm-linux-amd64
37+
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.2/gvm-linux-amd64
3838
chmod +x ~/bin/gvm
3939
eval "$(gvm 1.21.0)"
4040
go version
@@ -44,7 +44,7 @@ Linux (arm64):
4444

4545
``` bash
4646
# Linux Example (assumes ~/bin is in PATH).
47-
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.1/gvm-linux-arm64
47+
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.2/gvm-linux-arm64
4848
chmod +x ~/bin/gvm
4949
eval "$(gvm 1.21.0)"
5050
go version
@@ -54,7 +54,7 @@ macOS (universal):
5454

5555
``` bash
5656
# macOS Example
57-
curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.1/gvm-darwin-all
57+
curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.2/gvm-darwin-all
5858
chmod +x /usr/local/bin/gvm
5959
eval "$(gvm 1.21.0)"
6060
go version
@@ -64,7 +64,7 @@ Windows (PowerShell):
6464

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

7676
For existing Go users:
7777

78-
`go install github.com/andrewkroh/gvm/cmd/gvm@v0.5.1`
78+
`go install github.com/andrewkroh/gvm/cmd/gvm@v0.5.2`

0 commit comments

Comments
 (0)