Skip to content

Commit 840c42f

Browse files
committed
bump version to 4.5.8
1 parent 2d6941f commit 840c42f

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

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

4+
## [unreleased] - (? 2024 - [unreleased changes])
5+
46
## [4.5.7] - (April 2024 - [4.5.7 changes])
57
- Updates baseline to upstream SQLite 3.45.3
68
- Adds "device" logging and profile target using os_log for Apple (and logcat on Android)
@@ -239,6 +241,8 @@ All notable changes to this project will be documented in this file.
239241
### Security
240242
- Change KDF iteration length from 4,000 to 64,000
241243

244+
[unreleased]: https://github.com/sqlcipher/sqlcipher/tree/prerelease
245+
[unreleased changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.5.7...prerelease
242246
[4.5.7]: https://github.com/sqlcipher/sqlcipher/tree/v4.5.7
243247
[4.5.7 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.5.6...v4.5.7
244248
[4.5.6]: https://github.com/sqlcipher/sqlcipher/tree/v4.5.6

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

src/crypto.h

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

9191
#ifndef CIPHER_VERSION_NUMBER
92-
#define CIPHER_VERSION_NUMBER 4.5.7
92+
#define CIPHER_VERSION_NUMBER 4.5.8
9393
#endif
9494

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

0 commit comments

Comments
 (0)