bumps version to 4.2.0
This commit is contained in:
parent
20c63a67a1
commit
83cddfda21
|
@ -1,8 +1,8 @@
|
||||||
# SQLCipher Change Log
|
# SQLCipher Change Log
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## [unreleased] - (TBD - [unreleased])
|
## [4.2.0] - (May 2019 - [4.2.0 changes])
|
||||||
- Adds PRAGMA cipher_integrity_check to perform external verification of page HMACs
|
- Adds PRAGMA cipher_integrity_check to perform independent verification of page HMACs
|
||||||
- Updates baseline to upstream SQLite 3.28.0
|
- Updates baseline to upstream SQLite 3.28.0
|
||||||
|
|
||||||
## [4.1.0] - (March 2019 - [4.1.0 changes])
|
## [4.1.0] - (March 2019 - [4.1.0 changes])
|
||||||
|
@ -144,7 +144,9 @@ All notable changes to this project will be documented in this file.
|
||||||
### Security
|
### Security
|
||||||
- Change KDF iteration length from 4,000 to 64,000
|
- Change KDF iteration length from 4,000 to 64,000
|
||||||
|
|
||||||
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.1.0...prerelease
|
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.2.0...prerelease
|
||||||
|
[4.2.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.2.0
|
||||||
|
[4.2.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.1.0...v4.2.0
|
||||||
[4.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.1.0
|
[4.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.1.0
|
||||||
[4.1.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.0.1...v4.1.0
|
[4.1.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.0.1...v4.1.0
|
||||||
[4.0.1]: https://github.com/sqlcipher/sqlcipher/tree/v4.0.1
|
[4.0.1]: https://github.com/sqlcipher/sqlcipher/tree/v4.0.1
|
||||||
|
|
|
@ -15,10 +15,10 @@
|
||||||
"requires_arc": false,
|
"requires_arc": false,
|
||||||
"source": {
|
"source": {
|
||||||
"git": "https://github.com/sqlcipher/sqlcipher.git",
|
"git": "https://github.com/sqlcipher/sqlcipher.git",
|
||||||
"tag": "v4.1.0"
|
"tag": "v4.2.0"
|
||||||
},
|
},
|
||||||
"summary": "Full Database Encryption for SQLite.",
|
"summary": "Full Database Encryption for SQLite.",
|
||||||
"version": "4.1.0",
|
"version": "4.2.0",
|
||||||
"subspecs": [
|
"subspecs": [
|
||||||
{
|
{
|
||||||
"compiler_flags": [
|
"compiler_flags": [
|
||||||
|
|
|
@ -58,7 +58,7 @@ void sqlite3pager_reset(Pager *pPager);
|
||||||
#define CIPHER_STR(s) #s
|
#define CIPHER_STR(s) #s
|
||||||
|
|
||||||
#ifndef CIPHER_VERSION_NUMBER
|
#ifndef CIPHER_VERSION_NUMBER
|
||||||
#define CIPHER_VERSION_NUMBER 4.1.0
|
#define CIPHER_VERSION_NUMBER 4.2.0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CIPHER_VERSION_BUILD
|
#ifndef CIPHER_VERSION_BUILD
|
||||||
|
|
|
@ -46,7 +46,7 @@ do_test verify-pragma-cipher-version {
|
||||||
execsql {
|
execsql {
|
||||||
PRAGMA cipher_version;
|
PRAGMA cipher_version;
|
||||||
}
|
}
|
||||||
} {{4.1.0 community}}
|
} {{4.2.0 community}}
|
||||||
db close
|
db close
|
||||||
file delete -force test.db
|
file delete -force test.db
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue