diff options
author | Alex Naidis <alex.naidis@linux.com> | 2017-01-03 20:56:42 +0100 |
---|---|---|
committer | Alex Naidis <alex.naidis@linux.com> | 2017-01-03 20:56:42 +0100 |
commit | b86097c4cb51fd13c13a357e01839e65fb81296e (patch) | |
tree | 2867482dc07786f2dab38dec86c875aee9e9154f /dist/sqlite3.h | |
parent | bf807b731220a6e43189ede0c359b7b136d6a160 (diff) |
sqlite: upgrade to SQLite 3.16.1
Downloaded from https://www.sqlite.org/2017/sqlite-amalgamation-3160100.zip
$ sha256sum sqlite-amalgamation-3160100.zip
7c75d544d6a1627b176a17999a22ca871acab33c686ae0e3a2553bde475aa1f9 sqlite-amalgamation-3160100.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 a critical bug fix
for row values within triggers.
More details about the release is avaliable here: https://sqlite.org/releaselog/3_16_1.html
Change-Id: Id00c0f6d11b2e9fe418b71fc4b373dae12e9ef0a
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 7ce6391..33910e0 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.16.0" -#define SQLITE_VERSION_NUMBER 3016000 -#define SQLITE_SOURCE_ID "2017-01-02 11:57:58 04ac0b75b1716541b2b97704f4809cb7ef19cccf" +#define SQLITE_VERSION "3.16.1" +#define SQLITE_VERSION_NUMBER 3016001 +#define SQLITE_SOURCE_ID "2017-01-03 18:27:03 979f04392853b8053817a3eea2fc679947b437fd" /* ** CAPI3REF: Run-Time Library Version Numbers |