Skip to content

Commit

Permalink
Prepare release of version 1.4.8
Browse files Browse the repository at this point in the history
- Based on SQLite version 3.39.2
- Fix issue #85 (`PRAGMA rekey` could lead to a crash)
  • Loading branch information
utelle committed Jul 26, 2022
1 parent e1b82c1 commit 59beb5a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dnl Copyright (C) 2019-2022 Ulrich Telle <[email protected]>
dnl
dnl This file is covered by the same licence as the entire SQLite3 Multiple Ciphers package.

AC_INIT([sqlite3mc], [1.4.7], [[email protected]])
AC_INIT([sqlite3mc], [1.4.8], [[email protected]])

dnl This is the version tested with, might work with earlier ones.
AC_PREREQ([2.69])
Expand Down
3 changes: 3 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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*
Expand Down
2 changes: 1 addition & 1 deletion src/cipher_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/

Expand Down
4 changes: 2 additions & 2 deletions src/sqlite3mc_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_ */

0 comments on commit 59beb5a

Please sign in to comment.