Skip to content

Commit df350df

Browse files
committed
Update README for v0.3.0
1 parent 4c3394a commit df350df

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

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

99
bash:
1010

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

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

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

1717
powershell:
1818

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

2121
Installation
2222
------------
@@ -31,34 +31,34 @@ 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.2.4/gvm-linux-amd64
34+
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.0/gvm-linux-amd64
3535
chmod +x ~/bin/gvm
36-
eval "$(gvm 1.15.5)"
36+
eval "$(gvm 1.15.6)"
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.2.4/gvm-darwin-amd64
44+
curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.0/gvm-darwin-amd64
4545
chmod +x /usr/local/bin/gvm
46-
eval "$(gvm 1.15.5)"
46+
eval "$(gvm 1.15.6)"
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.2.4/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
55-
gvm --format=powershell 1.15.5 | Invoke-Expression
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
5656
go version
5757
```
5858

5959
Fish Shell:
6060

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

6363
For existing Go users:
6464

0 commit comments

Comments
 (0)