Skip to content

Commit

Permalink
Update supported go versions
Browse files Browse the repository at this point in the history
With the release of go 1.24.0, go 1.22.x is no longer supported. Update
supported go versions to go 1.23 and go 1.24.
  • Loading branch information
fishy committed Feb 11, 2025
1 parent 8a5538a commit 624118f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ jobs:
strategy:
matrix:
go:
- '1.22'
- '1.23'
- '1.24'
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
run: make -C test/go precross

- name: Upload go precross artifacts
if: matrix.go == '1.23'
if: matrix.go == '1.24'
uses: actions/upload-artifact@v4
with:
name: go-precross
Expand Down
2 changes: 1 addition & 1 deletion LANGUAGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Thrift's core protocol is TBinary, supported by all languages except for JavaScr
<td align=left><a href="https://github.com/apache/thrift/blob/master/lib/go/README.md">Go</a></td>
<!-- Since -----------------><td>0.7.0</td>
<!-- Build Systems ---------><td><img src="/doc/images/cgrn.png" alt="Yes"/></td><td><img src="/doc/images/cred.png" alt=""/></td>
<!-- Language Levels -------><td>1.22</td><td>1.23</td>
<!-- Language Levels -------><td>1.23</td><td>1.24</td>
<!-- Field types -----------><td><img src="/doc/images/cgrn.png" alt="Yes"/></td>
<!-- Low-Level Transports --><td><img src="/doc/images/cgrn.png" alt="Yes"/></td><td><img src="/doc/images/cred.png" alt=""/></td><td><img src="/doc/images/cgrn.png" alt="Yes"/></td><td><img src="/doc/images/cred.png" alt=""/></td><td><img src="/doc/images/cgrn.png" alt="Yes"/></td><td><img src="/doc/images/cgrn.png" alt="Yes"/></td>
<!-- Transport Wrappers ----><td><img src="/doc/images/cgrn.png" alt="Yes"/></td><td><img src="/doc/images/cgrn.png" alt="Yes"/></td><td><img src="/doc/images/cgrn.png" alt="Yes"/></td><td><img src="/doc/images/cgrn.png" alt="Yes"/></td>
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/apache/thrift

go 1.22.0
go 1.23
2 changes: 1 addition & 1 deletion lib/go/test/fuzz/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/apache/thrift/lib/go/test/fuzz

go 1.22.0
go 1.23

require github.com/apache/thrift v0.0.0-00010101000000-000000000000

Expand Down
2 changes: 1 addition & 1 deletion lib/go/test/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/apache/thrift/lib/go/test

go 1.22.0
go 1.23

require (
github.com/apache/thrift v0.0.0-00010101000000-000000000000
Expand Down
2 changes: 1 addition & 1 deletion test/go/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/apache/thrift/test/go

go 1.22.0
go 1.23

require (
github.com/apache/thrift v0.0.0-00010101000000-000000000000
Expand Down

0 comments on commit 624118f

Please sign in to comment.