Skip to content

Commit 317d479

Browse files
authored
chore: Update Go version in GVM readme to 1.25.7 (#123)
1 parent a9257e5 commit 317d479

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ https://go.dev/dl or build it from source. Below are examples for common shells.
77

88
bash:
99

10-
`eval "$(gvm 1.25.4)"`
10+
`eval "$(gvm 1.25.7)"`
1111

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

14-
`FOR /f "tokens=*" %i IN ('"gvm.exe" 1.25.4') DO %i`
14+
`FOR /f "tokens=*" %i IN ('"gvm.exe" 1.25.7') DO %i`
1515

1616
powershell:
1717

18-
`gvm --format=powershell 1.25.4 | Invoke-Expression`
18+
`gvm --format=powershell 1.25.7 | Invoke-Expression`
1919

2020
gvm flags can be set via environment variables by setting `GVM_<flag>`. For
2121
example `--http-timeout` can be set via `GVM_HTTP_TIMEOUT=10m`.
@@ -35,7 +35,7 @@ Linux (amd64):
3535
# Linux Example (assumes ~/bin is in PATH).
3636
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.6.0/gvm-linux-amd64
3737
chmod +x ~/bin/gvm
38-
eval "$(gvm 1.25.4)"
38+
eval "$(gvm 1.25.7)"
3939
go version
4040
```
4141

@@ -45,7 +45,7 @@ Linux (arm64):
4545
# Linux Example (assumes ~/bin is in PATH).
4646
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.6.0/gvm-linux-arm64
4747
chmod +x ~/bin/gvm
48-
eval "$(gvm 1.25.4)"
48+
eval "$(gvm 1.25.7)"
4949
go version
5050
```
5151

@@ -55,7 +55,7 @@ macOS (universal):
5555
# macOS Example
5656
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
58-
eval "$(gvm 1.25.4)"
58+
eval "$(gvm 1.25.7)"
5959
go version
6060
```
6161

@@ -64,13 +64,13 @@ Windows (PowerShell):
6464
```
6565
[Net.ServicePointManager]::SecurityProtocol = "tls12"
6666
Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.6.0/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
67-
gvm --format=powershell 1.25.4 | Invoke-Expression
67+
gvm --format=powershell 1.25.7 | Invoke-Expression
6868
go version
6969
```
7070

7171
Fish Shell:
7272

73-
Use `gvm` with fish shell by executing `gvm 1.25.4 | source` in lieu of using `eval`.
73+
Use `gvm` with fish shell by executing `gvm 1.25.7 | source` in lieu of using `eval`.
7474

7575
For existing Go users:
7676

0 commit comments

Comments
 (0)