File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# SQLCipher Change Log
22All notable changes to this project will be documented in this file.
33
4+ ## [ 4.4.0] - (May 2020 - [ 4.4.0 changes] )
5+ - Updates baseline to upstream SQLite 3.31.0
6+ - Adjusts shell to report SQLCipher version alongside SQLite version
7+ - Fixes various build warnings under several compilers
8+ - Removes unused id and status functions from provider interface
9+
410## [ 4.3.0] - (November 2019 - [ 4.3.0 changes] )
511- Updates baseline to upstream SQLite 3.30.1
612- 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.
158164### Security
159165- Change KDF iteration length from 4,000 to 64,000
160166
161- [ unreleased ] : https://github.com/sqlcipher/sqlcipher/compare/v4.3.0...prerelease
167+ [ unreleased ] : https://github.com/sqlcipher/sqlcipher/compare/v4.4.0...prerelease
168+ [ 4.4.0 ] : https://github.com/sqlcipher/sqlcipher/tree/v4.4.0
169+ [ 4.4.0 changes ] : https://github.com/sqlcipher/sqlcipher/compare/v4.3.0...v4.4.0
162170[ 4.3.0 ] : https://github.com/sqlcipher/sqlcipher/tree/v4.3.0
163171[ 4.3.0 changes ] : https://github.com/sqlcipher/sqlcipher/compare/v4.2.0...v4.3.0
164172[ 4.2.0 ] : https://github.com/sqlcipher/sqlcipher/tree/v4.2.0
Original file line number Diff line number Diff line change 1515 "requires_arc" : false ,
1616 "source" : {
1717 "git" : " https://github.com/sqlcipher/sqlcipher.git" ,
18- "tag" : " v4.3 .0"
18+ "tag" : " v4.4 .0"
1919 },
2020 "summary" : " Full Database Encryption for SQLite." ,
21- "version" : " 4.3 .0" ,
21+ "version" : " 4.4 .0" ,
2222 "subspecs" : [
2323 {
2424 "compiler_flags" : [
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ void sqlite3pager_reset(Pager *pPager);
5959#define CIPHER_STR (s ) #s
6060
6161#ifndef CIPHER_VERSION_NUMBER
62- #define CIPHER_VERSION_NUMBER 4.3 .0
62+ #define CIPHER_VERSION_NUMBER 4.4 .0
6363#endif
6464
6565#ifndef CIPHER_VERSION_BUILD
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ do_test verify-pragma-cipher-version {
4646 execsql {
4747 PRAGMA cipher_version;
4848 }
49- } {{4.3 .0 community}}
49+ } {{4.4 .0 community}}
5050db close
5151file delete -force test.db
5252
You can’t perform that action at this time.
0 commit comments