From 4c6cbd8c253533aeb54b02269c828b1aab55774a Mon Sep 17 00:00:00 2001 From: Stephen Lombardo Date: Tue, 3 May 2022 16:11:39 -0400 Subject: [PATCH] bump version number and changelog --- CHANGELOG.md | 7 +++++++ src/crypto.h | 2 +- test/sqlcipher-pragmas.test | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3c0aba8..3f059977 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # SQLCipher Change Log All notable changes to this project will be documented in this file. +## [unreleased] - (? 2022 - [unreleased changes]) +- Updates source code baseline to upstream SQLite 3.38.3 +- Simplifies OpenSSL version conditional code +- Fixes issue where PRAGMA cipher_memory_security could report OFF when it was actually ON +- Fixes fix unfreed OpenSSL allocation when compiled against version 3 +- Fixes support for building against recent versions of BoringSSL + ## [4.5.1] - (March 2022 - [4.5.1 changes]) - Updates source code baseline to upstream SQLite 3.37.2 - 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 diff --git a/src/crypto.h b/src/crypto.h index 7d59159f..0ecb9a66 100644 --- a/src/crypto.h +++ b/src/crypto.h @@ -84,7 +84,7 @@ void sqlite3pager_reset(Pager *pPager); #define CIPHER_STR(s) #s #ifndef CIPHER_VERSION_NUMBER -#define CIPHER_VERSION_NUMBER 4.5.1 +#define CIPHER_VERSION_NUMBER 4.5.2 #endif #ifndef CIPHER_VERSION_BUILD diff --git a/test/sqlcipher-pragmas.test b/test/sqlcipher-pragmas.test index 5fbeed95..6c5f0138 100644 --- a/test/sqlcipher-pragmas.test +++ b/test/sqlcipher-pragmas.test @@ -46,7 +46,7 @@ do_test verify-pragma-cipher-version { execsql { PRAGMA cipher_version; } -} {{4.5.1 community}} +} {{4.5.2 community}} db close file delete -force test.db -- 2.11.4.GIT