Skip to content

Commit b0f6560

Browse files
authored
Merge pull request #50 from stefanb/Enable-Go-1.26-support
Enable Go 1.26 support (#50)
2 parents d6e517c + eecae23 commit b0f6560

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
- '1.22'
2020
- '1.23'
2121
- '1.24'
22-
- '>=1.25.0-rc.1'
22+
- '1.25'
23+
- '>=1.26.0-rc.1'
2324

2425
runs-on: ${{ matrix.os }}
2526

@@ -38,7 +39,7 @@ jobs:
3839
matrix:
3940
go:
4041
- '1.24'
41-
- '>=1.25.0-rc.1'
42+
- '1.25'
4243
runs-on: ubuntu-latest
4344
steps:
4445
- uses: actions/checkout@v2
@@ -56,7 +57,8 @@ jobs:
5657
matrix:
5758
go:
5859
- '1.24'
59-
- '>=1.25.0-rc.1'
60+
- '1.25'
61+
- '>=1.26.0-rc.1'
6062
steps:
6163
- uses: actions/checkout@v2
6264

@@ -74,7 +76,8 @@ jobs:
7476
matrix:
7577
go:
7678
- '1.24'
77-
- '>=1.25.0-rc.1'
79+
- '1.25'
80+
- '>=1.26.0-rc.1'
7881
steps:
7982
- uses: actions/checkout@v2
8083

@@ -91,7 +94,8 @@ jobs:
9194
matrix:
9295
go:
9396
- '1.24.4'
94-
- '1.25rc1'
97+
- '1.25.5'
98+
- '1.26rc1'
9599
steps:
96100
- uses: actions/checkout@v2
97101

runtime_go1.20.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
// bumping of the go versions supported by adjusting the build tags below. The
1818
// way go version tags work the tag for goX.Y will be declared for every
1919
// subsequent release. So go1.20 will be defined for go1.21, go1.22, etc. The
20-
// build tag "go1.20 && !go1.26" defines the range [go1.20, go1.26) (inclusive
21-
// on go1.20, exclusive on go1.26).
20+
// build tag "go1.20 && !go1.27" defines the range [go1.20, go1.27) (inclusive
21+
// on go1.20, exclusive on go1.27).
2222

2323
// The untested_go_version flag enables building on any go version, intended
2424
// to ease testing against Go at tip.
25-
//go:build (go1.20 && !go1.26) || untested_go_version
25+
//go:build (go1.20 && !go1.27) || untested_go_version
2626

2727
package swiss
2828

0 commit comments

Comments
 (0)