all repos — honk @ 8bbb398743bfe88b20d6b60ed81dbc1e7566a0f3

my fork of honk

actually require sqlite 3.34
Ted Unangst tedu@tedunangst.com
Wed, 13 Mar 2024 16:20:21 -0400
commit

8bbb398743bfe88b20d6b60ed81dbc1e7566a0f3

parent

66fdb01b3b3e4f8ff67f66d913235e17c232a1ec

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M util.goutil.go

@@ -59,9 +59,9 @@ var stmtConfig *sql.Stmt

func init() { vers, num, _ := sqlite3.Version() - if num < 3020000 { + if num < 3034000 { fmt.Fprintf(os.Stderr, "libsqlite is too old. required: %s found: %s\n", - "3.20.0", vers) + "3.34.0", vers) os.Exit(1) } }