Skip to content

Commit 59beb5a

Browse files
committed
Prepare release of version 1.4.8
- Based on SQLite version 3.39.2 - Fix issue #85 (`PRAGMA rekey` could lead to a crash)
1 parent e1b82c1 commit 59beb5a

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dnl Copyright (C) 2019-2022 Ulrich Telle <[email protected]>
44
dnl
55
dnl This file is covered by the same licence as the entire SQLite3 Multiple Ciphers package.
66

7-
AC_INIT([sqlite3mc], [1.4.7], [[email protected]])
7+
AC_INIT([sqlite3mc], [1.4.8], [[email protected]])
88

99
dnl This is the version tested with, might work with earlier ones.
1010
AC_PREREQ([2.69])

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ The code was mainly developed under Windows, but was tested under Linux as well.
1010

1111
## Version history
1212

13+
* 1.4.8 - *July 2022*
14+
- Based on SQLite version 3.39.2
15+
- Fix issue in `PRAGMA rekey` that could lead to a crash
1316
* 1.4.7 - *July 2022*
1417
- Based on SQLite version 3.39.2
1518
* 1.4.6 - *July 2022*

src/cipher_config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
** Purpose: Configuration of SQLite codecs
44
** Author: Ulrich Telle
55
** Created: 2020-03-02
6-
** Copyright: (c) 2006-2021 Ulrich Telle
6+
** Copyright: (c) 2006-2022 Ulrich Telle
77
** License: MIT
88
*/
99

src/sqlite3mc_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
#define SQLITE3MC_VERSION_MAJOR 1
1616
#define SQLITE3MC_VERSION_MINOR 4
17-
#define SQLITE3MC_VERSION_RELEASE 7
17+
#define SQLITE3MC_VERSION_RELEASE 8
1818
#define SQLITE3MC_VERSION_SUBRELEASE 0
19-
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 1.4.7"
19+
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 1.4.8"
2020

2121
#endif /* SQLITE3MC_VERSION_H_ */

0 commit comments

Comments
 (0)