Skip to content

Commit

Permalink
Update go.mod to go 1.17 (#12)
Browse files Browse the repository at this point in the history
This enables more modern Go module features.
See https://go.dev/ref/mod#go-mod-file-go for details.

Signed-off-by: Mike Seplowitz <[email protected]>
  • Loading branch information
mikesep authored Sep 12, 2023
1 parent 336d912 commit 7802362
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
19 changes: 17 additions & 2 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ The format is based on [Keep a Changelog][], and this project adheres to

## Unreleased ([diff][diff-unreleased])

## [1.1.0][] ([diff][diff-1.1.0]) - 2023-09-12

## Changed

- Updated `go.mod` to `go 1.17` to enable more modern Go module features. See
the [Go Modules Reference](https://go.dev/ref/mod#go-mod-file-go) for details
([#12][pr-12]).

## [1.0.0][] ([diff][diff-1.0.0]) - 2023-09-11

There have been no significant changes to `testgroup`'s behavior since
Expand Down Expand Up @@ -75,9 +83,13 @@ First release of the library.

[pr-7]: https://github.com/bloomberg/go-testgroup/pull/7
[pr-8]: https://github.com/bloomberg/go-testgroup/pull/8
[pr-12]: https://github.com/bloomberg/go-testgroup/pull/12
[diff-unreleased]:
https://github.com/bloomberg/go-testgroup/compare/v1.0.0...HEAD
"unreleased changes since 1.0.0"
https://github.com/bloomberg/go-testgroup/compare/v1.1.0...HEAD
"unreleased changes since 1.1.0"
[diff-1.1.0]:
https://github.com/bloomberg/go-testgroup/compare/v1.0.0...v1.1.0
"changes from 1.0.0 to 1.1.0"
[diff-1.0.0]:
https://github.com/bloomberg/go-testgroup/compare/v0.3.1...v1.0.0
"changes from 0.3.1 to 1.0.0"
Expand All @@ -93,6 +105,9 @@ First release of the library.
[diff-0.1.0]:
https://github.com/bloomberg/go-testgroup/commits/v0.1.0
"changes from root to 0.1.0"
[1.1.0]:
https://github.com/bloomberg/go-testgroup/releases/tag/v1.1.0
"version 1.1.0"
[1.0.0]:
https://github.com/bloomberg/go-testgroup/releases/tag/v1.0.0
"version 1.0.0"
Expand Down
8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
module github.com/bloomberg/go-testgroup

go 1.13
go 1.17

require github.com/stretchr/testify v1.6.0

require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)

0 comments on commit 7802362

Please sign in to comment.