From 951fe9ecf32083f1910e7ec12231cd3fbb229661 Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Thu, 11 Nov 2021 00:49:14 +0700 Subject: [PATCH] chore: run go mod tidy with go v1.17 --- go.mod | 36 ++++++++++++++++++++++++++---------- 1 file changed, 26 insertions(+), 10 deletions(-) diff --git a/go.mod b/go.mod index 8705106..912e3db 100644 --- a/go.mod +++ b/go.mod @@ -1,29 +1,45 @@ module github.com/haunt98/changeloguru -go 1.16 +go 1.17 require ( - github.com/Microsoft/go-winio v0.5.1 // indirect - github.com/ProtonMail/go-crypto v0.0.0-20210920160938-87db9fbc61c7 // indirect - github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect - github.com/fatih/color v1.13.0 // indirect github.com/go-git/go-git/v5 v5.4.2 - github.com/google/go-cmp v0.5.5 // indirect github.com/haunt98/clock v0.2.0 github.com/haunt98/color v0.2.0 github.com/haunt98/markdown-go v0.4.0 github.com/haunt98/rst-go v0.2.0 - github.com/kevinburke/ssh_config v1.1.0 // indirect - github.com/mattn/go-colorable v0.1.11 // indirect github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e github.com/sebdah/goldie/v2 v2.5.3 - github.com/sergi/go-diff v1.2.0 // indirect github.com/stretchr/testify v1.7.0 github.com/urfave/cli/v2 v2.3.0 + golang.org/x/mod v0.5.1 +) + +require ( + github.com/Microsoft/go-winio v0.5.1 // indirect + github.com/ProtonMail/go-crypto v0.0.0-20210920160938-87db9fbc61c7 // indirect + github.com/acomagu/bufpipe v1.0.3 // indirect + github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/emirpasic/gods v1.12.0 // indirect + github.com/fatih/color v1.13.0 // indirect + github.com/go-git/gcfg v1.5.0 // indirect + github.com/go-git/go-billy/v5 v5.3.1 // indirect + github.com/google/go-cmp v0.5.5 // indirect + github.com/imdario/mergo v0.3.12 // indirect + github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect + github.com/kevinburke/ssh_config v1.1.0 // indirect + github.com/mattn/go-colorable v0.1.11 // indirect + github.com/mattn/go-isatty v0.0.14 // indirect + github.com/mitchellh/go-homedir v1.1.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/russross/blackfriday/v2 v2.1.0 // indirect + github.com/sergi/go-diff v1.2.0 // indirect github.com/xanzy/ssh-agent v0.3.1 // indirect golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect - golang.org/x/mod v0.5.1 golang.org/x/net v0.0.0-20211105192438-b53810dc28af // indirect golang.org/x/sys v0.0.0-20211105183446-c75c47738b0c // indirect + gopkg.in/warnings.v0 v0.1.2 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect )