Skip to content

Commit 20d8ccb

Browse files
committed
Merge branch 'master' into hanzei-patch-1
2 parents f071fae + 762bf42 commit 20d8ccb

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/go.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
go: [ '1.18.1', '1.17.6', '1.16.5' ]
17+
go: [ '1.22', '1.21', '1.20' ]
1818
steps:
1919
- uses: actions/checkout@v4
2020

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ To update Objx to the latest version, run:
7474
go get -u github.com/stretchr/objx
7575

7676
### Supported go versions
77-
We currently support the most recent major Go versions from 1.13 onward.
77+
We currently support the three recent major Go versions.
7878

7979
## Contributing
8080
Please feel free to submit issues, fork the repository and send pull requests!

go.mod

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
module github.com/stretchr/objx
22

3-
go 1.13
3+
go 1.20
44

55
require github.com/stretchr/testify v1.8.4
66

7+
require (
8+
github.com/davecgh/go-spew v1.1.1 // indirect
9+
github.com/pmezard/go-difflib v1.0.0 // indirect
10+
gopkg.in/yaml.v3 v3.0.1 // indirect
11+
)
12+
713
exclude github.com/stretchr/testify v1.8.0

0 commit comments

Comments
 (0)