Skip to content

Commit 8de6b42

Browse files
committed
add Go 1.25.x, drop 1.23.x
1 parent 5f729ea commit 8de6b42

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.23.x, 1.24.x]
7+
go-version: [1.24.x, 1.25.x]
88
os: [ubuntu-latest, macos-latest, windows-latest]
99
runs-on: ${{ matrix.os }}
1010
steps:
@@ -17,7 +17,7 @@ jobs:
1717

1818
# Static checks from this point forward. Only run on one Go version and on
1919
# Linux, since it's the fastest platform, and the tools behave the same.
20-
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x'
20+
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.25.x'
2121
run: diff <(echo -n) <(gofmt -s -d .)
22-
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x'
22+
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.25.x'
2323
run: go vet ./...

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# benchinit
22

33
Benchmark the initialization cost of your packages or programs.
4-
Requires Go 1.23 or later.
4+
Requires Go 1.24 or later.
55

66
go install mvdan.cc/benchinit@latest
77

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module mvdan.cc/benchinit
22

3-
go 1.23
3+
go 1.24.0
44

55
require github.com/rogpeppe/go-internal v1.14.1
66

0 commit comments

Comments
 (0)