Skip to content

Commit 1309dcf

Browse files
committed
update version and changelog
1 parent ca276db commit 1309dcf

4 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

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

4+
## [4.4.0] - (May 2020 - [4.4.0 changes])
5+
- Updates baseline to upstream SQLite 3.31.0
6+
- Adjusts shell to report SQLCipher version alongside SQLite version
7+
- Fixes various build warnings under several compilers
8+
- Removes unused id and status functions from provider interface
9+
410
## [4.3.0] - (November 2019 - [4.3.0 changes])
511
- Updates baseline to upstream SQLite 3.30.1
612
- PRAGMA key now returns text result value "ok" after execution
@@ -158,7 +164,9 @@ All notable changes to this project will be documented in this file.
158164
### Security
159165
- Change KDF iteration length from 4,000 to 64,000
160166

161-
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.3.0...prerelease
167+
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.0...prerelease
168+
[4.4.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.4.0
169+
[4.4.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.3.0...v4.4.0
162170
[4.3.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.3.0
163171
[4.3.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.2.0...v4.3.0
164172
[4.2.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.2.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.3.0"
18+
"tag": "v4.4.0"
1919
},
2020
"summary": "Full Database Encryption for SQLite.",
21-
"version": "4.3.0",
21+
"version": "4.4.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.3.0
62+
#define CIPHER_VERSION_NUMBER 4.4.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.3.0 community}}
49+
} {{4.4.0 community}}
5050
db close
5151
file delete -force test.db
5252

0 commit comments

Comments
 (0)