Skip to content

Commit 50cbb6e

Browse files
committed
update version and change log for 4.4.2
1 parent 8be1404 commit 50cbb6e

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# SQLCipher Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [4.4.2] - (November 2020 - [4.4.2 changes])
5+
- Improve error handling to resolve potential corruption if an encryption operation failed while operating in WAL mode
6+
- Changes to OpenSSL library cryptographic provider to reduce initialization complexity
7+
- Adjust cipher_integrity_check to skip locking page to avoid a spurious error report for very large databases
8+
- Miscellaneous code and comment cleanup
9+
410
## [4.4.1] - (October 2020 - [4.4.1 changes])
511
- Updates baseline to upstream SQLite 3.33.0
612
- Fixes double-free bug in cipher_default_plaintext_header_size
@@ -171,7 +177,9 @@ All notable changes to this project will be documented in this file.
171177
### Security
172178
- Change KDF iteration length from 4,000 to 64,000
173179

174-
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.1...prerelease
180+
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.2...prerelease
181+
[4.4.2]: https://github.com/sqlcipher/sqlcipher/tree/v4.4.2
182+
[4.4.2 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.0...v4.4.2
175183
[4.4.1]: https://github.com/sqlcipher/sqlcipher/tree/v4.4.1
176184
[4.4.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.0...v4.4.1
177185
[4.4.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.4.0

SQLCipher.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"requires_arc": false,
1616
"source": {
1717
"git": "https://github.com/sqlcipher/sqlcipher.git",
18-
"tag": "v4.4.1"
18+
"tag": "v4.4.2"
1919
},
2020
"summary": "Full Database Encryption for SQLite.",
21-
"version": "4.4.1",
21+
"version": "4.4.2",
2222
"subspecs": [
2323
{
2424
"compiler_flags": [

src/crypto.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.4.1
62+
#define CIPHER_VERSION_NUMBER 4.4.2
6363
#endif
6464

6565
#ifndef CIPHER_VERSION_BUILD

0 commit comments

Comments
 (0)