Clean up accidental v2 references

This commit is contained in:
Yasuhiro Matsumoto
2026-06-05 21:15:35 +09:00
parent 7ca6a979f9
commit 78b95b7777
2 changed files with 1 additions and 3 deletions

View File

@@ -9,8 +9,6 @@ go-sqlite3
Latest stable version is v1.14 or later, not v2. 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 # Description
A sqlite3 driver that conforms to the built-in database/sql interface. A sqlite3 driver that conforms to the built-in database/sql interface.

2
go.mod
View File

@@ -3,5 +3,5 @@ module github.com/mattn/go-sqlite3
go 1.21 go 1.21
retract ( 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.
) )