Skip to content

Commit 830cdb4

Browse files
committed
Prepare v0.3.1 release
1 parent 6cd36dd commit 830cdb4

File tree

2 files changed

+21
-12
lines changed

2 files changed

+21
-12
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
66

77
### Changed
88

9+
### Fixed
10+
11+
### Added
12+
13+
## [0.3.1]
14+
15+
### Changed
16+
917
- Use Go 1.17 to build project. [#40](https://github.com/andrewkroh/gvm/pull/40)
1018

1119
### Fixed
@@ -104,7 +112,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
104112

105113
Initial release.
106114

107-
[Unreleased]: https://github.com/andrewkroh/gvm/compare/v0.3.0...HEAD
115+
[Unreleased]: https://github.com/andrewkroh/gvm/compare/v0.3.1...HEAD
116+
[0.3.1]: https://github.com/andrewkroh/gvm/releases/tag/v0.3.1
108117
[0.3.0]: https://github.com/andrewkroh/gvm/releases/tag/v0.3.0
109118
[0.2.4]: https://github.com/andrewkroh/gvm/releases/tag/v0.2.4
110119
[0.2.3]: https://github.com/andrewkroh/gvm/releases/tag/v0.2.3

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ shells.
88

99
bash:
1010

11-
`eval "$(gvm 1.15.6)"`
11+
`eval "$(gvm 1.17.2)"`
1212

1313
cmd.exe (for batch scripts `%i` should be substituted with `%%i`):
1414

15-
`FOR /f "tokens=*" %i IN ('"gvm.exe" 1.15.6') DO %i`
15+
`FOR /f "tokens=*" %i IN ('"gvm.exe" 1.17.2') DO %i`
1616

1717
powershell:
1818

19-
`gvm --format=powershell 1.15.6 | Invoke-Expression`
19+
`gvm --format=powershell 1.17.2 | Invoke-Expression`
2020

2121
Installation
2222
------------
@@ -31,35 +31,35 @@ 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.0/gvm-linux-amd64
34+
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.1/gvm-linux-amd64
3535
chmod +x ~/bin/gvm
36-
eval "$(gvm 1.15.6)"
36+
eval "$(gvm 1.17.2)"
3737
go version
3838
```
3939

4040
macOS:
4141

4242
``` bash
4343
# macOS Example
44-
curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.0/gvm-darwin-amd64
44+
curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.1/gvm-darwin-amd64
4545
chmod +x /usr/local/bin/gvm
46-
eval "$(gvm 1.15.6)"
46+
eval "$(gvm 1.17.2)"
4747
go version
4848
```
4949

5050
Windows (Powershell):
5151

5252
```
5353
[Net.ServicePointManager]::SecurityProtocol = "tls12"
54-
Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.3.0/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
55-
gvm --format=powershell 1.15.6 | Invoke-Expression
54+
Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.3.1/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
55+
gvm --format=powershell 1.17.2 | Invoke-Expression
5656
go version
5757
```
5858

5959
Fish Shell:
6060

61-
Use `gvm` with fish shell by executing `gvm 1.15.6 | source` in lieu of using `eval`.
61+
Use `gvm` with fish shell by executing `gvm 1.17.2 | source` in lieu of using `eval`.
6262

6363
For existing Go users:
6464

65-
`go get -u github.com/andrewkroh/gvm/cmd/gvm`
65+
`go install github.com/andrewkroh/gvm/cmd/gvm@v0.3.1`

0 commit comments

Comments
 (0)