mirror of
https://github.com/status-im/sqlcipher.git
synced 2026-08-30 22:11:14 +00:00
bump version to 4.1.0
This commit is contained in:
+4
-1
@@ -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)
|
||||
|
||||
@@ -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
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user