Skip to content

Commit cced1c4

Browse files
committed
bump version to 4.1.0
1 parent eb6639c commit cced1c4

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

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

4-
## [unreleased] - [unreleased]
4+
## [4.1.0] - [unreleased]
55
- Defer reading salt from header until key derivation is triggered
66
- Clarify usage of sqlite3_rekey for plaintext databases in header
77
- Normalize attach behavior when key is not yet derived
@@ -10,6 +10,9 @@ All notable changes to this project will be documented in this file.
1010
- PRAGMA cipher_hmac_pgno is now deprecated
1111
- PRAGMA cipher_hmac_salt_mask is now deprecated
1212
- PRAGMA fast_kdf_iter is now deprecated
13+
- Clear codec data buffers if a crypographic provider operation fails
14+
- Disable backup API for encrypted databases (this was previously documented as not-working and non-supported, but will now explicitly error out on initialization)
15+
- Updates baseline to upstream SQLite 3.27.1
1316

1417
## [4.0.1] - 2018-12-17
1518
- Based on upstream SQLite 3.26.0 (addresses SQLite “Magellan” issue)

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.0.1"
18+
"tag": "v4.1.0"
1919
},
2020
"summary": "Full Database Encryption for SQLite.",
21-
"version": "4.0.1",
21+
"version": "4.1.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.0.1
61+
#define CIPHER_VERSION_NUMBER 4.1.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.0.1 community}}
49+
} {{4.1.0 community}}
5050
db close
5151
file delete -force test.db
5252

0 commit comments

Comments
 (0)