Skip to content

Commit 83cddfd

Browse files
committed
bumps version to 4.2.0
1 parent 20c63a6 commit 83cddfd

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

CHANGELOG.md

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

4-
## [unreleased] - (TBD - [unreleased])
5-
- Adds PRAGMA cipher_integrity_check to perform external verification of page HMACs
4+
## [4.2.0] - (May 2019 - [4.2.0 changes])
5+
- Adds PRAGMA cipher_integrity_check to perform independent verification of page HMACs
66
- Updates baseline to upstream SQLite 3.28.0
77

88
## [4.1.0] - (March 2019 - [4.1.0 changes])
@@ -144,7 +144,9 @@ All notable changes to this project will be documented in this file.
144144
### Security
145145
- Change KDF iteration length from 4,000 to 64,000
146146

147-
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.1.0...prerelease
147+
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.2.0...prerelease
148+
[4.2.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.2.0
149+
[4.2.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.1.0...v4.2.0
148150
[4.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.1.0
149151
[4.1.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.0.1...v4.1.0
150152
[4.0.1]: https://github.com/sqlcipher/sqlcipher/tree/v4.0.1

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.1.0"
18+
"tag": "v4.2.0"
1919
},
2020
"summary": "Full Database Encryption for SQLite.",
21-
"version": "4.1.0",
21+
"version": "4.2.0",
2222
"subspecs": [
2323
{
2424
"compiler_flags": [

src/crypto.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ void sqlite3pager_reset(Pager *pPager);
5858
#define CIPHER_STR(s) #s
5959

6060
#ifndef CIPHER_VERSION_NUMBER
61-
#define CIPHER_VERSION_NUMBER 4.1.0
61+
#define CIPHER_VERSION_NUMBER 4.2.0
6262
#endif
6363

6464
#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.1.0 community}}
49+
} {{4.2.0 community}}
5050
db close
5151
file delete -force test.db
5252

0 commit comments

Comments
 (0)