Skip to content

Commit

Permalink
statically linked SQLite3 3.39.2 engine
Browse files Browse the repository at this point in the history
for a new release
  • Loading branch information
Arnaud Bouchez committed Jul 26, 2022
1 parent 8663a3f commit 601a6bd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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 @@ -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
Expand Down
8 changes: 4 additions & 4 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.39.1 engine with optional AES encryption
Statically linked SQLite3 3.39.2 engine with optional AES encryption
- TSqlite3LibraryStatic Implementation
- Encryption-Related Functions
Expand Down Expand Up @@ -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';
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.3779'
'2.0.3780'

0 comments on commit 601a6bd

Please sign in to comment.