From 78b95b77773b1d0014ff4611128d03af9fdfa412 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Fri, 5 Jun 2026 21:15:35 +0900 Subject: [PATCH] Clean up accidental v2 references --- README.md | 2 -- go.mod | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index fd2ef55..4fd3911 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,6 @@ go-sqlite3 Latest stable version is v1.14 or later, not v2. -~~**NOTE:** The increase to v2 was an accident. There were no major changes or features.~~ - # Description A sqlite3 driver that conforms to the built-in database/sql interface. diff --git a/go.mod b/go.mod index 97bd090..88c68ee 100644 --- a/go.mod +++ b/go.mod @@ -3,5 +3,5 @@ module github.com/mattn/go-sqlite3 go 1.21 retract ( - [v2.0.0+incompatible, v2.0.6+incompatible] // Accidental; no major changes or features. + [v2.0.0+incompatible, v2.0.7+incompatible] // Accidental; no major changes or features. )