Skip to content

Commit aa9fb5c

Browse files
committed
Bumps version to 4.7.2
Bumps SQLCipher versions to 4.7.2. Note that 4.7.1 was intentionally omitted due that version number being required to publish a patch to Maven for Community Edition SQLCipher for Android
1 parent 57d3855 commit aa9fb5c

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Notable changes to this project are documented in this file.
33

44
## [unreleased] - (? 2025 - [unreleased changes])
55

6+
## [4.7.2] - (? 2025 - [4.7.2 changes])
7+
- 4.7.1 intentionally omitted
8+
69
## [4.7.0] - (March 2025 - [4.7.0 changes])
710
- Updates baseline to upstream SQLite 3.49.1, including complete upstream SQLite refactoring of build system to use autosetup
811
- Significantly refactors and optimizes library initialization and cleanup
@@ -280,7 +283,9 @@ __BREAKING CHANGE__: `SELECT` statements (now also including schema independent
280283
- Change KDF iteration length from 4,000 to 64,000
281284

282285
[unreleased]: https://github.com/sqlcipher/sqlcipher/tree/prerelease
283-
[unreleased changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.7.0...prerelease
286+
[unreleased changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.7.2...prerelease
287+
[4.7.2]: https://github.com/sqlcipher/sqlcipher/tree/v4.7.2
288+
[4.7.2 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.7.0...v4.7.2
284289
[4.7.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.7.0
285290
[4.7.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.6.1...v4.7.0
286291
[4.6.1]: https://github.com/sqlcipher/sqlcipher/tree/v4.6.1

SQLCipher.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"requires_arc": false,
1919
"source": {
2020
"git": "https://github.com/sqlcipher/sqlcipher.git",
21-
"tag": "v4.7.0"
21+
"tag": "v4.7.2"
2222
},
2323
"summary": "Full Database Encryption for SQLite.",
24-
"version": "4.7.0",
24+
"version": "4.7.2",
2525
"subspecs": [
2626
{
2727
"compiler_flags": [

src/sqlcipher.c

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

101101
#ifndef CIPHER_VERSION_NUMBER
102-
#define CIPHER_VERSION_NUMBER 4.7.0
102+
#define CIPHER_VERSION_NUMBER 4.7.2
103103
#endif
104104

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

0 commit comments

Comments
 (0)