-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: bump minimum go version to 1.18 (#235)
Signed-off-by: Phil Adams <phil_adams@us.ibm.com>
- Loading branch information
Showing
5 changed files
with
77 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,37 @@ | ||
module github.com/IBM/platform-services-go-sdk | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/IBM/go-sdk-core/v5 v5.10.2 | ||
github.com/IBM/go-sdk-core/v5 v5.13.0 | ||
github.com/go-openapi/strfmt v0.21.3 | ||
github.com/google/uuid v1.3.0 | ||
github.com/onsi/ginkgo v1.16.5 | ||
github.com/onsi/gomega v1.18.0 | ||
github.com/stretchr/testify v1.8.0 | ||
github.com/onsi/gomega v1.27.1 | ||
github.com/stretchr/testify v1.8.1 | ||
) | ||
|
||
require ( | ||
This comment has been minimized.
Sorry, something went wrong. |
||
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/go-openapi/errors v0.20.3 // indirect | ||
github.com/go-playground/locales v0.14.1 // indirect | ||
github.com/go-playground/universal-translator v0.18.1 // indirect | ||
github.com/go-playground/validator/v10 v10.11.2 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/nxadm/tail v1.4.8 // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
go.mongodb.org/mongo-driver v1.11.2 // indirect | ||
golang.org/x/crypto v0.5.0 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.
This section was added automatically by
go mod tidy
.