Skip to content

Commit c604f9e

Browse files
authored
Upgrade to Go 1.19 (#162)
1 parent 00ae210 commit c604f9e

File tree

2 files changed

+69
-65
lines changed

2 files changed

+69
-65
lines changed

go.mod

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,52 @@
11
module github.com/goyalmunish/reminder
22

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/AlecAivazis/survey/v2 v2.3.6
77
github.com/google/uuid v1.3.0
8-
github.com/rivo/tview v0.0.0-20230104153304-892d1a2eb0da
8+
github.com/rivo/tview v0.0.0-20230307144320-cc10b288e304
99
github.com/sirupsen/logrus v1.9.0
10-
github.com/spf13/viper v1.14.0
11-
golang.org/x/oauth2 v0.4.0
12-
google.golang.org/api v0.107.0
10+
github.com/spf13/viper v1.15.0
11+
golang.org/x/oauth2 v0.6.0
12+
google.golang.org/api v0.112.0
1313
gopkg.in/yaml.v3 v3.0.1
1414
)
1515

1616
require (
17-
cloud.google.com/go/compute v1.14.0 // indirect
17+
cloud.google.com/go/compute v1.18.0 // indirect
1818
cloud.google.com/go/compute/metadata v0.2.3 // indirect
1919
github.com/fsnotify/fsnotify v1.6.0 // indirect
2020
github.com/gdamore/encoding v1.0.0 // indirect
21-
github.com/gdamore/tcell/v2 v2.5.3 // indirect
21+
github.com/gdamore/tcell/v2 v2.6.0 // indirect
2222
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
2323
github.com/golang/protobuf v1.5.2 // indirect
24-
github.com/googleapis/enterprise-certificate-proxy v0.2.1 // indirect
24+
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
2525
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
2626
github.com/hashicorp/hcl v1.0.0 // indirect
2727
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
2828
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
29-
github.com/magiconair/properties v1.8.6 // indirect
29+
github.com/magiconair/properties v1.8.7 // indirect
3030
github.com/mattn/go-colorable v0.1.12 // indirect
3131
github.com/mattn/go-isatty v0.0.14 // indirect
32-
github.com/mattn/go-runewidth v0.0.13 // indirect
32+
github.com/mattn/go-runewidth v0.0.14 // indirect
3333
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
3434
github.com/mitchellh/mapstructure v1.5.0 // indirect
35-
github.com/pelletier/go-toml v1.9.5 // indirect
36-
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
37-
github.com/rivo/uniseg v0.4.2 // indirect
38-
github.com/spf13/afero v1.9.2 // indirect
35+
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
36+
github.com/rivo/uniseg v0.4.3 // indirect
37+
github.com/spf13/afero v1.9.3 // indirect
3938
github.com/spf13/cast v1.5.0 // indirect
4039
github.com/spf13/jwalterweatherman v1.1.0 // indirect
4140
github.com/spf13/pflag v1.0.5 // indirect
42-
github.com/subosito/gotenv v1.4.1 // indirect
41+
github.com/subosito/gotenv v1.4.2 // indirect
4342
go.opencensus.io v0.24.0 // indirect
44-
golang.org/x/net v0.7.0 // indirect
45-
golang.org/x/sys v0.5.0 // indirect
46-
golang.org/x/term v0.5.0 // indirect
47-
golang.org/x/text v0.7.0 // indirect
43+
golang.org/x/net v0.8.0 // indirect
44+
golang.org/x/sys v0.6.0 // indirect
45+
golang.org/x/term v0.6.0 // indirect
46+
golang.org/x/text v0.8.0 // indirect
4847
google.golang.org/appengine v1.6.7 // indirect
49-
google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef // indirect
50-
google.golang.org/grpc v1.51.0 // indirect
48+
google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488 // indirect
49+
google.golang.org/grpc v1.53.0 // indirect
5150
google.golang.org/protobuf v1.28.1 // indirect
5251
gopkg.in/ini.v1 v1.67.0 // indirect
53-
gopkg.in/yaml.v2 v2.4.0 // indirect
5452
)

0 commit comments

Comments
 (0)