Skip to content

Commit f929738

Browse files
authored
Merge pull request #1384 from mattn/raise-go121-cleanup
Raise minimum Go version to 1.21
2 parents b23d54c + efae5e7 commit f929738

4 files changed

Lines changed: 88 additions & 365 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/mattn/go-sqlite3
22

3-
go 1.19
3+
go 1.21
44

55
retract (
66
[v2.0.0+incompatible, v2.0.6+incompatible] // Accidental; no major changes or features.

sqlite3_go113_test.go

Lines changed: 0 additions & 120 deletions
This file was deleted.

sqlite3_go18.go renamed to sqlite3_sql.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@
33
// Use of this source code is governed by an MIT-style
44
// license that can be found in the LICENSE file.
55

6-
//go:build cgo && go1.8
7-
// +build cgo,go1.8
6+
//go:build cgo
7+
// +build cgo
88

99
package sqlite3
1010

1111
import (
12-
"database/sql/driver"
13-
1412
"context"
13+
"database/sql/driver"
1514
)
1615

1716
// Ping implement Pinger.

0 commit comments

Comments
 (0)