Skip to content

Commit

Permalink
feat(mod): upgrade go version to 1.21.3
Browse files Browse the repository at this point in the history
  • Loading branch information
godcong committed Oct 26, 2023
1 parent 33756ad commit 8cf2a55
Show file tree
Hide file tree
Showing 5 changed files with 200 additions and 45 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Build
strategy:
matrix:
go-version: [ 1.19.x ]
go-version: [ 1.21.x ]
platform: [ ubuntu-latest ]
arch: [ 386, amd64 ]
runs-on: ${{ matrix.platform }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Build
strategy:
matrix:
go-version: [ 1.19.x ]
go-version: [ 1.21.x ]
platform: [ macos-latest ]
arch: [ 386, amd64 ]
runs-on: ${{ matrix.platform }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Build
strategy:
matrix:
go-version: [ 1.19.x ]
go-version: [ 1.21.x ]
platform: [ windows-latest ]
arch: [ 386, amd64 ]
runs-on: ${{ matrix.platform }}
Expand Down
77 changes: 35 additions & 42 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,65 +1,58 @@
module github.com/babyname/fate

require (
entgo.io/ent v0.11.9
github.com/6tail/lunar-go v1.2.21
github.com/cespare/xxhash/v2 v2.2.0
github.com/go-sql-driver/mysql v1.7.0
entgo.io/ent v0.12.4
github.com/go-sql-driver/mysql v1.7.1
github.com/godcong/chronos v0.0.3
github.com/godcong/yi v1.0.2
github.com/goextension/log v0.0.2
github.com/google/uuid v1.3.0
github.com/mattn/go-sqlite3 v1.14.16
github.com/rakyll/statik v0.1.6
github.com/spf13/cobra v1.6.1
github.com/google/uuid v1.3.1
github.com/mattn/go-sqlite3 v1.14.17
github.com/rakyll/statik v0.1.7
github.com/spf13/cobra v1.7.0
github.com/tikafog/jsongs v1.0.2
github.com/xormsharp/builder v0.3.8
github.com/xormsharp/xorm v1.0.4
go.uber.org/zap v1.13.0
golang.org/x/exp v0.0.0-20221230185412-738e83a70c30
golang.org/x/exp v0.0.0-20231006140011-7918f672742d
)

require (
ariga.io/atlas v0.9.1 // indirect
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/agext/levenshtein v1.2.1 // indirect
ariga.io/atlas v0.15.0 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/go-openapi/inflect v0.19.0 // indirect
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/hashicorp/hcl/v2 v2.13.0 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/hashicorp/hcl/v2 v2.19.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/sqlite3ent/sqlite3 v1.0.0 // indirect
github.com/syndtr/goleveldb v1.0.0 // indirect
github.com/zclconf/go-cty v1.8.0 // indirect
go.uber.org/atomic v1.5.0 // indirect
go.uber.org/multierr v1.3.0 // indirect
go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee // indirect
golang.org/x/lint v0.0.0-20190930215403-16217165b5de // indirect
golang.org/x/mod v0.8.0 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/term v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/tools v0.6.1-0.20230222164832-25d2519c8696 // indirect
honnef.co/go/tools v0.0.1-2019.2.3 // indirect
lukechampine.com/uint128 v1.2.0 // indirect
modernc.org/cc/v3 v3.40.0 // indirect
modernc.org/ccgo/v3 v3.16.13 // indirect
modernc.org/libc v1.22.3 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.5.0 // indirect
github.com/zclconf/go-cty v1.14.1 // indirect
golang.org/x/mod v0.13.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sync v0.4.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/tools v0.14.0 // indirect
lukechampine.com/uint128 v1.3.0 // indirect
modernc.org/cc/v3 v3.41.0 // indirect
modernc.org/cc/v4 v4.2.1 // indirect
modernc.org/ccgo/v3 v3.16.15 // indirect
modernc.org/ccgo/v4 v4.0.0-20230612200659-63de3e82e68d // indirect
modernc.org/gc/v2 v2.1.2-0.20220923113132-f3b5abcf8083 // indirect
modernc.org/libc v1.28.0 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.7.2 // indirect
modernc.org/opt v0.1.3 // indirect
modernc.org/sqlite v1.21.0 // indirect
modernc.org/strutil v1.1.3 // indirect
modernc.org/token v1.0.1 // indirect
modernc.org/token v1.1.0 // indirect
)

go 1.18
go 1.21.3
Loading

0 comments on commit 8cf2a55

Please sign in to comment.