8000 update version and change log for 4.4.3 · ashed/sqlcipher@0663d85 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0663d85

Browse files
committed
update version and change log for 4.4.3
1 parent 95c8c6f commit 0663d85

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

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

4+
## [4.4.3] - (February 2021 - [4.4.3 changes])
5+
- Updates baseline to ustream SQLite 3.34.1
6+
- Fixes sqlcipher_export handling of NULL parameters
7+
- Removes randomization of rekey-delete tests to avoid false test failures
8+
- Changes internal usage of sqlite_master to sqlite_schema
9+
- Omits unusued profiling function under certain defines to avoid compiler warnings
10+
411
## [4.4.2] - (November 2020 - [4.4.2 changes])
512
- Improve error handling to resolve potential corruption if an encryption operation failed while operating in WAL mode
613
- Changes to OpenSSL library cryptographic provider to reduce initialization complexity
@@ -177,9 +184,11 @@ All notable changes to this project will be documented in this file.
177184
### Security
178185
- Change KDF iteration length from 4,000 to 64,000
179186

180-
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.2...prerelease
187+
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.3...prerelease
188+
[4.4.3]: https://github.com/sqlcipher/sqlcipher/tree/v4.4.3
189+
[4.4.3 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.2...v4.4.3
181190
[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
191+
[4.4.2 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.1...v4.4.2
183192
[4.4.1]: https://github.com/sqlcipher/sqlcipher/tree/v4.4.1
184193
[4.4.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.0...v4.4.1
185194
[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.2"
18+
"tag": "v4.4.3"
1919
},
2020
"summary": "Full Database Encryption for SQLite.",
21-
"version": "4.4.2",
21+
"version": "4.4.3",
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.2
62+
#define CIPHER_VERSION_NUMBER 4.4.3
6363
#endif
6464

6565
#ifndef CIPHER_VERSION_BUILD

test/sqlcipher-pragmas.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ do_test verify-pragma-cipher-version {
4646
execsql {
4747
PRAGMA cipher_version;
4848
}
49-
} {{4.4.2 community}}
49+
} {{4.4.3 community}}
5050
db close
5151
file delete -force test.db
5252

0 commit comments

Comments
 (0)
0