From 1a38e7c35bfc4c2e5809d89fb1f4691917dcf23b Mon Sep 17 00:00:00 2001 From: Brian Koropoff Date: Mon, 20 Jul 2026 18:06:12 -0700 Subject: [PATCH] Reduce minimum sqlite version to 3.37.2 This ships on Ubuntu 22.04, which is still an important build target for ABI compatibility with older glibc --- src/vfs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vfs.rs b/src/vfs.rs index 3e7e35b..b7b1dbb 100644 --- a/src/vfs.rs +++ b/src/vfs.rs @@ -16,7 +16,7 @@ use core::{ /// The minimim supported `SQLite` version. // If you need to make this earlier, make sure the tests are testing the earlier version -pub const MIN_SQLITE_VERSION_NUMBER: i32 = 3043000; +pub const MIN_SQLITE_VERSION_NUMBER: i32 = 3037002; const DEFAULT_MAX_PATH_LEN: i32 = 512; pub const DEFAULT_SECTOR_SIZE: i32 = 4096;