Skip to content

Commit aa0194d

Browse files
authored
Drop Go 1.13-17 support (#1420)
Start v1.8 development
1 parent f20b286 commit aa0194d

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

.github/workflows/test.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,6 @@ jobs:
2727
# Older production releases
2828
'1.19',
2929
'1.18',
30-
'1.17',
31-
'1.16',
32-
'1.15',
33-
'1.14',
34-
'1.13',
3530
]
3631
mysql = [
3732
'8.0',
@@ -47,7 +42,7 @@ jobs:
4742
includes = []
4843
# Go versions compatibility check
4944
for v in go[1:]:
50-
includes.append({'os': 'ubuntu-latest', 'go': v, 'mysql': mysql[0]})
45+
includes.append({'os': 'ubuntu-latest', 'go': v, 'mysql': mysql[0]})
5146
5247
matrix = {
5348
# OS vs MySQL versions
@@ -69,10 +64,10 @@ jobs:
6964
matrix: ${{ fromJSON(needs.list.outputs.matrix) }}
7065
steps:
7166
- uses: actions/checkout@v3
72-
- uses: actions/setup-go@v3
67+
- uses: actions/setup-go@v4
7368
with:
7469
go-version: ${{ matrix.go }}
75-
- uses: shogo82148/actions-setup-mysql@v1.15.0
70+
- uses: shogo82148/actions-setup-mysql@v1.16.0
7671
with:
7772
mysql-version: ${{ matrix.mysql }}
7873
user: ${{ env.MYSQL_TEST_USER }}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ A MySQL-Driver for Go's [database/sql](https://golang.org/pkg/database/sql/) pac
4040
* Optional placeholder interpolation
4141

4242
## Requirements
43-
* Go 1.13 or higher. We aim to support the 3 latest versions of Go.
44-
* MySQL (4.1+), MariaDB, Percona Server, Google CloudSQL or Sphinx (2.2.3+)
43+
* Go 1.18 or higher. We aim to support the 3 latest versions of Go.
44+
* MySQL (5.6+), MariaDB, Percona Server, Google CloudSQL or Sphinx (2.2.3+)
4545

4646
---------------------------------------
4747

go.mod

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

3-
go 1.13
3+
go 1.18

0 commit comments

Comments
 (0)