Skip to content

Commit

Permalink
Merge branch 'master' into hanzei-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzei committed Feb 29, 2024
2 parents f071fae + 762bf42 commit 20d8ccb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.18.1', '1.17.6', '1.16.5' ]
go: [ '1.22', '1.21', '1.20' ]
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ To update Objx to the latest version, run:
go get -u github.com/stretchr/objx

### Supported go versions
We currently support the most recent major Go versions from 1.13 onward.
We currently support the three recent major Go versions.

## Contributing
Please feel free to submit issues, fork the repository and send pull requests!
8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
module github.com/stretchr/objx

go 1.13
go 1.20

require github.com/stretchr/testify v1.8.4

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
)

exclude github.com/stretchr/testify v1.8.0

0 comments on commit 20d8ccb

Please sign in to comment.