Skip to content

Commit 4c6cbd8

Browse files
committed
bump version number and changelog
1 parent 20bc41f commit 4c6cbd8

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

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

4+
## [unreleased] - (? 2022 - [unreleased changes])
5+
- Updates source code baseline to upstream SQLite 3.38.3
6+
- Simplifies OpenSSL version conditional code
7+
- Fixes issue where PRAGMA cipher_memory_security could report OFF when it was actually ON
8+
- Fixes fix unfreed OpenSSL allocation when compiled against version 3
9+
- Fixes support for building against recent versions of BoringSSL
10+
411
## [4.5.1] - (March 2022 - [4.5.1 changes])
512
- Updates source code baseline to upstream SQLite 3.37.2
613
- Adds PRAGMA cipher_log and cipher_log_level features to allow logging of TRACE, DEBUG, INFO, WARN, and ERROR messages to stdout, stderr, file, or logcat

src/crypto.h

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

8686
#ifndef CIPHER_VERSION_NUMBER
87-
#define CIPHER_VERSION_NUMBER 4.5.1
87+
#define CIPHER_VERSION_NUMBER 4.5.2
8888
#endif
8989

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

0 commit comments

Comments
 (0)