diff --git a/configure.ac b/configure.ac index 423a7f7..613f747 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ dnl Copyright (C) 2019-2022 Ulrich Telle dnl dnl This file is covered by the same licence as the entire SQLite3 Multiple Ciphers package. -AC_INIT([sqlite3mc], [1.4.7], [ulrich@telle-online.de]) +AC_INIT([sqlite3mc], [1.4.8], [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 8c9a5d6..9d1d88c 100644 --- a/readme.md +++ b/readme.md @@ -10,6 +10,9 @@ The code was mainly developed under Windows, but was tested under Linux as well. ## Version history +* 1.4.8 - *July 2022* + - Based on SQLite version 3.39.2 + - Fix issue in `PRAGMA rekey` that could lead to a crash * 1.4.7 - *July 2022* - Based on SQLite version 3.39.2 * 1.4.6 - *July 2022* diff --git a/src/cipher_config.c b/src/cipher_config.c index 2d56b8c..d43caac 100644 --- a/src/cipher_config.c +++ b/src/cipher_config.c @@ -3,7 +3,7 @@ ** Purpose: Configuration of SQLite codecs ** Author: Ulrich Telle ** Created: 2020-03-02 -** Copyright: (c) 2006-2021 Ulrich Telle +** Copyright: (c) 2006-2022 Ulrich Telle ** License: MIT */ diff --git a/src/sqlite3mc_version.h b/src/sqlite3mc_version.h index 89d1b41..17ae6b7 100644 --- a/src/sqlite3mc_version.h +++ b/src/sqlite3mc_version.h @@ -14,8 +14,8 @@ #define SQLITE3MC_VERSION_MAJOR 1 #define SQLITE3MC_VERSION_MINOR 4 -#define SQLITE3MC_VERSION_RELEASE 7 +#define SQLITE3MC_VERSION_RELEASE 8 #define SQLITE3MC_VERSION_SUBRELEASE 0 -#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 1.4.7" +#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 1.4.8" #endif /* SQLITE3MC_VERSION_H_ */