Skip to content

Commit 924e0ef

Browse files
committed
update version to 4.3.0
1 parent 9bbfd5d commit 924e0ef

4 files changed

Lines changed: 18 additions & 5 deletions

File tree

CHANGELOG.md

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

4+
## [4.3.0] - (November 2019 - [4.3.0 changes])
5+
- Updates baseline to upstream SQLite 3.30.1
6+
- PRAGMA key now returns text result value "ok" after execution
7+
- Adjusts backup API so that encrypted to encrypted backups are permitted
8+
- Adds NSS crypto provider implementation
9+
- Fixes OpenSSL provider compatibility with BoringSSL
10+
- Separates memory related traces to reduce verbosity of logging
11+
- Fixes output of PRAGMA cipher_integrity_check on big endian platforms
12+
- Cryptograpic provider interface cleanup
13+
- Resolves miscellaneous build warnings
14+
415
## [4.2.0] - (May 2019 - [4.2.0 changes])
516
- Adds PRAGMA cipher_integrity_check to perform independent verification of page HMACs
617
- Updates baseline to upstream SQLite 3.28.0
@@ -145,7 +156,9 @@ All notable changes to this project will be documented in this file.
145156
### Security
146157
- Change KDF iteration length from 4,000 to 64,000
147158

148-
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.2.0...prerelease
159+
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.3.0...prerelease
160+
[4.3.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.3.0
161+
[4.3.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.2.0...v4.3.0
149162
[4.2.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.2.0
150163
[4.2.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.1.0...v4.2.0
151164
[4.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.1.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.2.0"
18+
"tag": "v4.3.0"
1919
},
2020
"summary": "Full Database Encryption for SQLite.",
21-
"version": "4.2.0",
21+
"version": "4.3.0",
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.2.0
62+
#define CIPHER_VERSION_NUMBER 4.3.0
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.2.0 community}}
49+
} {{4.3.0 community}}
5050
db close
5151
file delete -force test.db
5252

0 commit comments

Comments
 (0)