From 14db4955b369bcaad3c8bd9f4146b0050ef8fc79 Mon Sep 17 00:00:00 2001 From: Beatriz Vieira Date: Wed, 29 Dec 2021 15:53:44 -0300 Subject: [PATCH] chore: update gomod to go 1.17 --- go.mod | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index bf0b789..de8f31b 100644 --- a/go.mod +++ b/go.mod @@ -1,16 +1,21 @@ module github.com/bvieira/sv4git/v2 -go 1.16 +go 1.17 require ( github.com/Masterminds/semver/v3 v3.1.1 - github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect github.com/imdario/mergo v0.3.12 github.com/kelseyhightower/envconfig v1.4.0 - github.com/kr/pretty v0.1.0 // indirect github.com/manifoldco/promptui v0.9.0 github.com/urfave/cli/v2 v2.3.0 + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b +) + +require ( + github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect + github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect + github.com/kr/pretty v0.1.0 // indirect + github.com/russross/blackfriday/v2 v2.1.0 // indirect golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect - gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b )