Skip to content

Commit c84f49d

Browse files
authoredApr 8, 2025··
add Go 1.24 to the test matrix (#1681)
1 parent 21ef4c6 commit c84f49d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
import os
3030
go = [
3131
# Keep the most recent production release at the top
32-
'1.23',
32+
'1.24',
3333
# Older production releases
34+
'1.23',
3435
'1.22',
35-
'1.21',
3636
]
3737
mysql = [
3838
'9.0',

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ A MySQL-Driver for Go's [database/sql](https://golang.org/pkg/database/sql/) pac
4242

4343
## Requirements
4444

45-
* Go 1.21 or higher. We aim to support the 3 latest versions of Go.
45+
* Go 1.22 or higher. We aim to support the 3 latest versions of Go.
4646
* MySQL (5.7+) and MariaDB (10.5+) are supported.
4747
* [TiDB](https://github.com/pingcap/tidb) is supported by PingCAP.
4848
* Do not ask questions about TiDB in our issue tracker or forum.

‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/go-sql-driver/mysql
22

3-
go 1.21.0
3+
go 1.22.0
44

55
require filippo.io/edwards25519 v1.1.0

0 commit comments

Comments
 (0)
Please sign in to comment.