From dfdb04878158e52c53d120b39e821f813d451fb8 Mon Sep 17 00:00:00 2001 From: utelle Date: Thu, 9 Nov 2023 09:02:38 +0100 Subject: [PATCH] Prepare release of version 1.7.4 - Based on SQLite version 3.44.0 --- CHANGELOG.md | 7 +++++++ configure.ac | 2 +- readme.md | 3 ++- src/sqlite3mc_version.h | 4 ++-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47c44d2..09a5b6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.7.4] - 2023-11-09 + +### Changed + +- Based on SQLite version 3.44.0 +- Prevent crashes due to uninitialized cipher tables + ## [1.7.3] - 2023-11-05 ### Changed diff --git a/configure.ac b/configure.ac index daba9a1..bdb0c1b 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ dnl Copyright (C) 2019-2023 Ulrich Telle dnl dnl This file is covered by the same licence as the entire SQLite3 Multiple Ciphers package. -AC_INIT([sqlite3mc], [1.7.3], [ulrich@telle-online.de]) +AC_INIT([sqlite3mc], [1.7.4], [ulrich@telle-online.de]) dnl This is the version tested with, might work with earlier ones. AC_PREREQ([2.69]) diff --git a/readme.md b/readme.md index ff0054a..f7046a7 100644 --- a/readme.md +++ b/readme.md @@ -10,8 +10,9 @@ The code was mainly developed under Windows, but was tested under Linux as well. ## Version information -* 1.7.3 - *November 2023* +* 1.7.4 - *November 2023* - Based on SQLite version 3.44.0 + - Prevent crashes due to uninitialized cipher tables For further version information please consult the [CHANGELOG](CHANGELOG.md). diff --git a/src/sqlite3mc_version.h b/src/sqlite3mc_version.h index 969872d..57c68c5 100644 --- a/src/sqlite3mc_version.h +++ b/src/sqlite3mc_version.h @@ -14,8 +14,8 @@ #define SQLITE3MC_VERSION_MAJOR 1 #define SQLITE3MC_VERSION_MINOR 7 -#define SQLITE3MC_VERSION_RELEASE 3 +#define SQLITE3MC_VERSION_RELEASE 4 #define SQLITE3MC_VERSION_SUBRELEASE 0 -#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 1.7.3" +#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 1.7.4" #endif /* SQLITE3MC_VERSION_H_ */