Skip to content

Commit a911e64

Browse files
committed
Update to sqlite 3.46.1
Also adds a script to conveniently pull updates from upstream
1 parent 5af3289 commit a911e64

File tree

5 files changed

+122
-96
lines changed

5 files changed

+122
-96
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
swift-toolchain-sqlite
22
======================
33

4-
The [SQLite Amalgamation](https://sqlite.org/amalgamation.html) from sqlite.org as a Swift package, version 3.46.0.
4+
The [SQLite Amalgamation](https://sqlite.org/amalgamation.html) from sqlite.org as a Swift package.
55

66
This is intended as a common infrastructure package for components of the Swift toolchain which depend on SQLite.
77
It is not intended as a general-purpose SQLite package, nor does it aim to provide Swift wrapper APIs.

Sources/CSQLite/include/sqlite3.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@ extern "C" {
146146
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
147147
** [sqlite_version()] and [sqlite_source_id()].
148148
*/
149-
#define SQLITE_VERSION "3.46.0"
150-
#define SQLITE_VERSION_NUMBER 3046000
151-
#define SQLITE_SOURCE_ID "2024-05-23 13:25:27 96c92aba00c8375bc32fafcdf12429c58bd8aabfcadab6683e35bbb9cdebf19e"
149+
#define SQLITE_VERSION "3.46.1"
150+
#define SQLITE_VERSION_NUMBER 3046001
151+
#define SQLITE_SOURCE_ID "2024-08-13 09:16:08 c9c2ab54ba1f5f46360f1b4f35d849cd3f080e6fc2b6c60e91b16c63f69a1e33"
152152

153153
/*
154154
** CAPI3REF: Run-Time Library Version Numbers

0 commit comments

Comments
 (0)