From 200c018481254444255dc0d90f1ad1bb7838d64a Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Sun, 16 Jul 2023 17:37:11 -0400 Subject: Switch to Go 1.20 errors package This updates all subpackages and removes use of go-multierror in favor of the stdlib implementation. --- go.mod | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 3028d64..f510a56 100644 --- a/go.mod +++ b/go.mod @@ -1,11 +1,16 @@ module github.com/posener/complete/v2 +go 1.20 + require ( bou.ke/monkey v1.0.2 - github.com/hashicorp/go-multierror v1.0.0 - github.com/posener/autogen v0.0.2 - github.com/posener/script v1.1.5 - github.com/stretchr/testify v1.4.0 + github.com/posener/autogen v0.0.3 + github.com/posener/script v1.2.0 + github.com/stretchr/testify v1.8.4 ) -go 1.13 +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect +) -- cgit v1.2.3