diff options
author | Park Ju Hyung <qkrwngud825@gmail.com> | 2016-12-06 01:00:46 +0900 |
---|---|---|
committer | Alex Naidis <alex.naidis@linux.com> | 2016-12-09 17:54:58 +0100 |
commit | 7ba711e053994ade0e96f58ecd1839ac1b0db787 (patch) | |
tree | cfb22384ffe1217571497c4f79816c0dec81cda0 /dist/sqlite3.h | |
parent | 8f362d835bb5506f4e27c67e5e558cc57295db5b (diff) |
sqlite: upgrade to SQLite 3.15.2
Downloaded from https://www.sqlite.org/2016/sqlite-amalgamation-3150200.zip
$ sha256sum sqlite-amalgamation-3150200.zip
37e4bffc5568434267617a83671e0b9b39bbcb3732fd75cbcbce250cbd5fd091 sqlite-amalgamation-3150200.zip
dist/orig contains the stock sqlite3 code, as packaged in the ZIP file above.
dist contains a copy of dist/orig, but with the Android.patch file applied.
Please see Android.patch for a list of differences between stock and
Android.
The Android specific patch applied cleanly
and was regenerated.
This minor release contains bug fixes.
More details about the release is avaliable here: https://sqlite.org/releaselog/3_15_2.html
Change-Id: I684208e2b2ab41cf6edd97ed719e9c9db3f7edeb
Signed-off-by: Park Ju Hyung <qkrwngud825@gmail.com>
Signed-off-by: Alex Naidis <alex.naidis@linux.com>
Diffstat (limited to 'dist/sqlite3.h')
-rw-r--r-- | dist/sqlite3.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/sqlite3.h b/dist/sqlite3.h index d02aeb1..8222b79 100644 --- a/dist/sqlite3.h +++ b/dist/sqlite3.h @@ -121,9 +121,9 @@ extern "C" { ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ -#define SQLITE_VERSION "3.15.1" -#define SQLITE_VERSION_NUMBER 3015001 -#define SQLITE_SOURCE_ID "2016-11-04 12:08:49 1136863c76576110e710dd5d69ab6bf347c65e36" +#define SQLITE_VERSION "3.15.2" +#define SQLITE_VERSION_NUMBER 3015002 +#define SQLITE_SOURCE_ID "2016-11-28 19:13:37 bbd85d235f7037c6a033a9690534391ffeacecc8" /* ** CAPI3REF: Run-Time Library Version Numbers |