Skip to content

Commit 6bf09ee

Browse files
build: target go 1.17
1 parent 4b5cbf6 commit 6bf09ee

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

go.mod

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
module github.com/conventionalcommit/commitlint
22

3-
go 1.13
3+
go 1.17
44

55
require (
66
github.com/conventionalcommit/parser v0.3.0
7-
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
87
github.com/fatih/color v1.12.0
9-
github.com/stretchr/testify v1.6.1
8+
github.com/stretchr/testify v1.7.0
109
github.com/urfave/cli/v2 v2.3.0
10+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
11+
)
12+
13+
require (
14+
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
15+
github.com/davecgh/go-spew v1.1.1 // indirect
16+
github.com/mattn/go-colorable v0.1.8 // indirect
17+
github.com/mattn/go-isatty v0.0.12 // indirect
18+
github.com/pmezard/go-difflib v1.0.0 // indirect
19+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
1120
golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980 // indirect
1221
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
13-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
1422
)

go.sum

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf
2525
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
2626
github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=
2727
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
28-
github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0=
2928
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
29+
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
30+
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
3031
github.com/urfave/cli/v2 v2.3.0 h1:qph92Y649prgesehzOrQjdWyxFOp/QVM+6imKHad91M=
3132
github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI=
3233
golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

0 commit comments

Comments
 (0)