Skip to content

Commit cfd9ea4

Browse files
authored
Merge pull request #4 from apiiro/yariv/bump_version
Bump Go version in go.mod to match the one that we are building with
2 parents db3065b + 6596db4 commit cfd9ea4

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

go.mod

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module code-complexity
22

3-
go 1.16
3+
go 1.20
44

55
require (
66
github.com/gobwas/glob v0.2.3
@@ -9,3 +9,13 @@ require (
99
github.com/urfave/cli/v2 v2.3.0
1010
golang.org/x/net v0.0.0-20210913180222-943fd674d43e
1111
)
12+
13+
require (
14+
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
15+
github.com/davecgh/go-spew v1.1.0 // indirect
16+
github.com/pmezard/go-difflib v1.0.0 // indirect
17+
github.com/russross/blackfriday/v2 v2.0.1 // indirect
18+
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
19+
golang.org/x/text v0.3.6 // indirect
20+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
21+
)

go.sum

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ github.com/urfave/cli/v2 v2.3.0 h1:qph92Y649prgesehzOrQjdWyxFOp/QVM+6imKHad91M=
2525
github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI=
2626
golang.org/x/net v0.0.0-20210913180222-943fd674d43e h1:+b/22bPvDYt4NPDcy4xAGCmON713ONAWFeY3Z7I3tR8=
2727
golang.org/x/net v0.0.0-20210913180222-943fd674d43e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
28-
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
29-
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
30-
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
3128
golang.org/x/text v0.3.6 h1:aRYxNxv6iGQlyVaZmk6ZgYEDa+Jg18DxebPSrd6bg1M=
3229
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
3330
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/urfave/cli/v2"
1212
)
1313

14-
const VERSION = "1.0.3"
14+
const VERSION = "1.0.4"
1515

1616
func main() {
1717
cli.AppHelpTemplate =

0 commit comments

Comments
 (0)