bump version number and add qualifier

This commit is contained in:
Stephen Lombardo 2018-10-17 15:57:40 -04:00
parent 57ea35296c
commit 7e805e5388
2 changed files with 2 additions and 6 deletions

View File

@ -55,11 +55,7 @@ void sqlite3pager_reset(Pager *pPager);
#define FILE_HEADER_SZ 16
#ifndef CIPHER_VERSION
#ifdef SQLCIPHER_FIPS
#define CIPHER_VERSION "3.4.2 FIPS"
#else
#define CIPHER_VERSION "3.4.2"
#endif
#define CIPHER_VERSION "4.0.0 community"
#endif
#define CIPHER_DECRYPT 0

View File

@ -46,7 +46,7 @@ do_test verify-pragma-cipher-version {
execsql {
PRAGMA cipher_version;
}
} {3.4.2}
} {{4.0.0 community}}
db close
file delete -force test.db