Skip to content

Commit

Permalink
Merge pull request #1445 from gwenn/3.45.1
Browse files Browse the repository at this point in the history
Bump bundled SQLite version to 3.45.1
  • Loading branch information
gwenn committed Jan 31, 2024
2 parents 4a202bd + 7b46124 commit 3bd3855
Show file tree
Hide file tree
Showing 5 changed files with 142 additions and 98 deletions.
6 changes: 3 additions & 3 deletions libsqlite3-sys/sqlite3/bindgen_bundled_version.rs
Expand Up @@ -23,10 +23,10 @@ extern "C" {
) -> ::std::os::raw::c_int;
}

pub const SQLITE_VERSION: &[u8; 7] = b"3.45.0\0";
pub const SQLITE_VERSION_NUMBER: i32 = 3045000;
pub const SQLITE_VERSION: &[u8; 7] = b"3.45.1\0";
pub const SQLITE_VERSION_NUMBER: i32 = 3045001;
pub const SQLITE_SOURCE_ID: &[u8; 85] =
b"2024-01-15 17:01:13 1066602b2b1976fe58b5150777cced894af17c803e068f5918390d6915b46e1d\0";
b"2024-01-30 16:01:20 e876e51a0ed5c5b3126f52e532044363a014bc594cfefa87ffb5b82257cc467a\0";
pub const SQLITE_OK: i32 = 0;
pub const SQLITE_ERROR: i32 = 1;
pub const SQLITE_INTERNAL: i32 = 2;
Expand Down
6 changes: 3 additions & 3 deletions libsqlite3-sys/sqlite3/bindgen_bundled_version_ext.rs
@@ -1,9 +1,9 @@
/* automatically generated by rust-bindgen 0.69.2 */

pub const SQLITE_VERSION: &[u8; 7] = b"3.45.0\0";
pub const SQLITE_VERSION_NUMBER: i32 = 3045000;
pub const SQLITE_VERSION: &[u8; 7] = b"3.45.1\0";
pub const SQLITE_VERSION_NUMBER: i32 = 3045001;
pub const SQLITE_SOURCE_ID: &[u8; 85] =
b"2024-01-15 17:01:13 1066602b2b1976fe58b5150777cced894af17c803e068f5918390d6915b46e1d\0";
b"2024-01-30 16:01:20 e876e51a0ed5c5b3126f52e532044363a014bc594cfefa87ffb5b82257cc467a\0";
pub const SQLITE_OK: i32 = 0;
pub const SQLITE_ERROR: i32 = 1;
pub const SQLITE_INTERNAL: i32 = 2;
Expand Down

0 comments on commit 3bd3855

Please sign in to comment.