bump version to 4.1.0

This commit is contained in:
Stephen Lombardo
2019-02-21 09:12:12 -05:00
parent eb6639c16c
commit cced1c4d8b
4 changed files with 8 additions and 5 deletions
+4 -1
View File
@@ -1,7 +1,7 @@
# SQLCipher Change Log
All notable changes to this project will be documented in this file.
## [unreleased] - [unreleased]
## [4.1.0] - [unreleased]
- Defer reading salt from header until key derivation is triggered
- Clarify usage of sqlite3_rekey for plaintext databases in header
- Normalize attach behavior when key is not yet derived
@@ -10,6 +10,9 @@ All notable changes to this project will be documented in this file.
- PRAGMA cipher_hmac_pgno is now deprecated
- PRAGMA cipher_hmac_salt_mask is now deprecated
- PRAGMA fast_kdf_iter is now deprecated
- Clear codec data buffers if a crypographic provider operation fails
- Disable backup API for encrypted databases (this was previously documented as not-working and non-supported, but will now explicitly error out on initialization)
- Updates baseline to upstream SQLite 3.27.1
## [4.0.1] - 2018-12-17
- Based on upstream SQLite 3.26.0 (addresses SQLite “Magellan” issue)
+2 -2
View File
@@ -15,10 +15,10 @@
"requires_arc": false,
"source": {
"git": "https://github.com/sqlcipher/sqlcipher.git",
"tag": "v4.0.1"
"tag": "v4.1.0"
},
"summary": "Full Database Encryption for SQLite.",
"version": "4.0.1",
"version": "4.1.0",
"subspecs": [
{
"compiler_flags": [
+1 -1
View File
@@ -58,7 +58,7 @@ void sqlite3pager_reset(Pager *pPager);
#define CIPHER_STR(s) #s
#ifndef CIPHER_VERSION_NUMBER
#define CIPHER_VERSION_NUMBER 4.0.1
#define CIPHER_VERSION_NUMBER 4.1.0
#endif
#ifndef CIPHER_VERSION_BUILD
+1 -1
View File
@@ -46,7 +46,7 @@ do_test verify-pragma-cipher-version {
execsql {
PRAGMA cipher_version;
}
} {{4.0.1 community}}
} {{4.1.0 community}}
db close
file delete -force test.db