Skip to content

Commit 8b8fdf5

Browse files
committed
support latest two versions
Signed-off-by: Josh Humphries <[email protected]>
1 parent 2b9d2f6 commit 8b8fdf5

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
# when editing this list, also update steps and jobs below
19-
go-version: [1.22.x, 1.23.x, 1.24.x]
19+
go-version: [1.23.x, 1.24.x]
2020
steps:
2121
- name: Checkout Code
2222
uses: actions/checkout@v4

.github/workflows/windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: windows-latest
1616
strategy:
1717
matrix:
18-
go-version: [1.22.x, 1.23.x, 1.24.x]
18+
go-version: [1.23.x, 1.24.x]
1919
steps:
2020
- name: Checkout Code
2121
uses: actions/checkout@v4

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,8 @@ configuring timeouts, connection pools, observability, and h2c.
157157

158158
This module is stable. It supports:
159159

160-
* The three most recent major releases of Go. Keep in mind that [only the last
161-
two releases receive security patches][go-support-policy].
160+
* The two most recent major releases of Go (the same versions of Go that continue
161+
to [receive security patches][go-support-policy]).
162162
* [APIv2] of Protocol Buffers in Go (`google.golang.org/protobuf`).
163163

164164
Within those parameters, `connect` follows semantic versioning. We will

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module connectrpc.com/connect
22

3-
go 1.22
3+
go 1.23.0
44

55
retract (
66
v1.10.0 // module cache poisoned, use v1.10.1

internal/conformance/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module connectrpc.com/connect/internal/conformance
22

3-
go 1.22
4-
5-
toolchain go1.23.5
3+
go 1.23.0
64

75
require connectrpc.com/conformance v1.0.4
86

0 commit comments

Comments
 (0)