update version and changelog
This commit is contained in:
parent
ca276dbc49
commit
1309dcf2bd
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,6 +1,12 @@
|
||||||
# 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.
|
||||||
|
|
||||||
|
## [4.4.0] - (May 2020 - [4.4.0 changes])
|
||||||
|
- Updates baseline to upstream SQLite 3.31.0
|
||||||
|
- Adjusts shell to report SQLCipher version alongside SQLite version
|
||||||
|
- Fixes various build warnings under several compilers
|
||||||
|
- Removes unused id and status functions from provider interface
|
||||||
|
|
||||||
## [4.3.0] - (November 2019 - [4.3.0 changes])
|
## [4.3.0] - (November 2019 - [4.3.0 changes])
|
||||||
- Updates baseline to upstream SQLite 3.30.1
|
- Updates baseline to upstream SQLite 3.30.1
|
||||||
- PRAGMA key now returns text result value "ok" after execution
|
- PRAGMA key now returns text result value "ok" after execution
|
||||||
|
@ -158,7 +164,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.3.0...prerelease
|
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.0...prerelease
|
||||||
|
[4.4.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.4.0
|
||||||
|
[4.4.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.3.0...v4.4.0
|
||||||
[4.3.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.3.0
|
[4.3.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.3.0
|
||||||
[4.3.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.2.0...v4.3.0
|
[4.3.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.2.0...v4.3.0
|
||||||
[4.2.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.2.0
|
[4.2.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.2.0
|
||||||
|
|
|
@ -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.3.0"
|
"tag": "v4.4.0"
|
||||||
},
|
},
|
||||||
"summary": "Full Database Encryption for SQLite.",
|
"summary": "Full Database Encryption for SQLite.",
|
||||||
"version": "4.3.0",
|
"version": "4.4.0",
|
||||||
"subspecs": [
|
"subspecs": [
|
||||||
{
|
{
|
||||||
"compiler_flags": [
|
"compiler_flags": [
|
||||||
|
|
|
@ -59,7 +59,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.3.0
|
#define CIPHER_VERSION_NUMBER 4.4.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.3.0 community}}
|
} {{4.4.0 community}}
|
||||||
db close
|
db close
|
||||||
file delete -force test.db
|
file delete -force test.db
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue