Skip to content

Commit f4c7ad1

Browse files
YOUR_NAMEYOUR_NAME
authored andcommitted
chore: 🤖 golang version
upgrade to1.21
1 parent 24a4b0d commit f4c7ad1

File tree

5 files changed

+53
-50
lines changed

5 files changed

+53
-50
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ docker run --rm --net=host wklken/fetch help
3737

3838
### Build from source
3939

40-
- dependencies: go1.19
40+
- dependencies: go1.21
4141

4242
```bash
4343
git clone https://github.com/wklken/fetch.git

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ docker run --rm --net=host wklken/fetch help
4949

5050
### Build from source
5151

52-
- dependencies: go1.19
52+
- dependencies: go1.21
5353

5454
```bash
5555
git clone https://github.com/wklken/fetch.git

go.mod

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module github.com/wklken/fetch
22

3-
go 1.20
3+
go 1.21
44

55
require (
6-
github.com/fatih/color v1.15.0
6+
github.com/fatih/color v1.16.0
77
github.com/gin-gonic/gin v1.9.1
88
github.com/goccy/go-json v0.10.2
99
github.com/goccy/go-yaml v1.11.2
@@ -12,37 +12,36 @@ require (
1212
github.com/onsi/gomega v1.24.0
1313
github.com/panjf2000/ants/v2 v2.8.2
1414
github.com/pelletier/go-toml/v2 v2.1.0
15-
github.com/schollz/progressbar/v3 v3.13.1
15+
github.com/schollz/progressbar/v3 v3.14.1
1616
github.com/spf13/cast v1.5.1
17-
github.com/spf13/cobra v1.7.0
17+
github.com/spf13/cobra v1.8.0
1818
github.com/spf13/viper v1.17.0
1919
github.com/stretchr/testify v1.8.4
2020
github.com/vmihailenco/msgpack/v5 v5.4.1
21-
golang.org/x/net v0.17.0
21+
golang.org/x/net v0.18.0
2222
gopkg.in/xmlpath.v2 v2.0.0-20150820204837-860cbeca3ebc
2323
gopkg.in/yaml.v3 v3.0.1
2424
)
2525

2626
require (
2727
github.com/bytedance/sonic v1.10.2 // indirect
2828
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
29-
github.com/chenzhuoyu/iasm v0.9.0 // indirect
29+
github.com/chenzhuoyu/iasm v0.9.1 // indirect
3030
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3131
github.com/fsnotify/fsnotify v1.7.0 // indirect
3232
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
3333
github.com/go-playground/locales v0.14.1 // indirect
3434
github.com/go-playground/universal-translator v0.18.1 // indirect
35-
github.com/go-playground/validator/v10 v10.15.5 // indirect
35+
github.com/go-playground/validator/v10 v10.16.0 // indirect
3636
github.com/google/go-cmp v0.5.9 // indirect
3737
github.com/hashicorp/hcl v1.0.0 // indirect
3838
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3939
github.com/json-iterator/go v1.1.12 // indirect
40-
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
40+
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
4141
github.com/leodido/go-urn v1.2.4 // indirect
4242
github.com/magiconair/properties v1.8.7 // indirect
4343
github.com/mattn/go-colorable v0.1.13 // indirect
4444
github.com/mattn/go-isatty v0.0.20 // indirect
45-
github.com/mattn/go-runewidth v0.0.15 // indirect
4645
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
4746
github.com/mitchellh/mapstructure v1.5.0 // indirect
4847
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
@@ -60,12 +59,12 @@ require (
6059
github.com/ugorji/go/codec v1.2.11 // indirect
6160
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
6261
go.uber.org/multierr v1.11.0 // indirect
63-
golang.org/x/arch v0.5.0 // indirect
64-
golang.org/x/crypto v0.14.0 // indirect
65-
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
66-
golang.org/x/sys v0.13.0 // indirect
67-
golang.org/x/term v0.13.0 // indirect
68-
golang.org/x/text v0.13.0 // indirect
62+
golang.org/x/arch v0.6.0 // indirect
63+
golang.org/x/crypto v0.15.0 // indirect
64+
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect
65+
golang.org/x/sys v0.14.0 // indirect
66+
golang.org/x/term v0.14.0 // indirect
67+
golang.org/x/text v0.14.0 // indirect
6968
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
7069
google.golang.org/protobuf v1.31.0 // indirect
7170
gopkg.in/ini.v1 v1.67.0 // indirect

0 commit comments

Comments
 (0)