Skip to content

Commit

Permalink
update to latest statically linked SQLite3 3.38.2 engine
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnaud Bouchez committed Apr 12, 2022
1 parent a190c48 commit 996cb96
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/db/mormot.db.raw.sqlite3.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2131,7 +2131,7 @@ TSqlite3Library = class
close: function(DB: TSqlite3DB): integer; cdecl;

/// Return the version of the SQLite database engine, in ascii format
// - currently returns '3.38.1', when used in conjunction with our
// - currently returns '3.38.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
Expand Down
4 changes: 2 additions & 2 deletions src/db/mormot.db.raw.sqlite3.static.pas
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{
*****************************************************************************
Statically linked SQLite3 3.38.1 engine with optional AES encryption
Statically linked SQLite3 3.38.2 engine with optional AES encryption
- TSqlite3LibraryStatic Implementation
- Encryption-Related Functions
Expand Down Expand Up @@ -1005,7 +1005,7 @@ 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.38.1';
EXPECTED_SQLITE3_VERSION = '3.38.2';

// where to download the latest available static binaries, including SQLite3
EXPECTED_STATIC_DOWNLOAD = 'https://synopse.info/files/mormot2static.7z';
Expand Down
2 changes: 1 addition & 1 deletion src/mormot.commit.inc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
'2.0.181'
'2.0.182'

0 comments on commit 996cb96

Please sign in to comment.