From 601a6bd136a2d4d344277a1e543d6cd61d771c3f Mon Sep 17 00:00:00 2001 From: Arnaud Bouchez Date: Tue, 26 Jul 2022 20:00:27 +0200 Subject: [PATCH] statically linked SQLite3 3.39.2 engine for a new release --- src/db/mormot.db.raw.sqlite3.pas | 2 +- src/db/mormot.db.raw.sqlite3.static.pas | 8 ++++---- src/mormot.commit.inc | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/db/mormot.db.raw.sqlite3.pas b/src/db/mormot.db.raw.sqlite3.pas index b3e15187c..7b2678d60 100644 --- a/src/db/mormot.db.raw.sqlite3.pas +++ b/src/db/mormot.db.raw.sqlite3.pas @@ -2132,7 +2132,7 @@ TSqlite3Library = class close: function(DB: TSqlite3DB): integer; cdecl; /// Return the version of the SQLite database engine, in ascii format - // - currently returns '3.39.1', when used in conjunction with our + // - currently returns '3.39.2', when used in conjunction with our // mormot.db.raw.sqlite3.static unit // - if an external SQLite3 library is used, version may vary // - you may use the VersionText property (or Version for full details) instead diff --git a/src/db/mormot.db.raw.sqlite3.static.pas b/src/db/mormot.db.raw.sqlite3.static.pas index f390a882e..aaf27902b 100644 --- a/src/db/mormot.db.raw.sqlite3.static.pas +++ b/src/db/mormot.db.raw.sqlite3.static.pas @@ -6,7 +6,7 @@ { ***************************************************************************** - Statically linked SQLite3 3.39.1 engine with optional AES encryption + Statically linked SQLite3 3.39.2 engine with optional AES encryption - TSqlite3LibraryStatic Implementation - Encryption-Related Functions @@ -1031,12 +1031,12 @@ function sqlite3_error_offset(DB: TSqlite3DB): integer; cdecl; external; const // error message if statically linked sqlite3.o(bj) does not match this value - EXPECTED_SQLITE3_VERSION = '3.39.1'; + EXPECTED_SQLITE3_VERSION = '3.39.2'; // the github release tag associated with this EXPECTED_SQLITE3_VERSION // - you could download the static for this exact mORMot source revision e.g. as - // https://github.com/synopse/mORMot2/releases/download/2.0.3717/mormot2static.7z - EXPECTED_RELEASE_TAG = '2.0.3717'; + // https://github.com/synopse/mORMot2/releases/download/2.0.3780/mormot2static.7z + EXPECTED_RELEASE_TAG = '2.0.3780'; // where to download the latest available static binaries, including SQLite3 EXPECTED_STATIC_DOWNLOAD = 'https://synopse.info/files/mormot2static.7z'; diff --git a/src/mormot.commit.inc b/src/mormot.commit.inc index 2b9c78c96..2c718078a 100644 --- a/src/mormot.commit.inc +++ b/src/mormot.commit.inc @@ -1 +1 @@ -'2.0.3779' +'2.0.3780'