Skip to content

Commit dfdb048

Browse files
committed
Prepare release of version 1.7.4
- Based on SQLite version 3.44.0
1 parent a6f98ba commit dfdb048

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.7.4] - 2023-11-09
11+
12+
### Changed
13+
14+
- Based on SQLite version 3.44.0
15+
- Prevent crashes due to uninitialized cipher tables
16+
1017
## [1.7.3] - 2023-11-05
1118

1219
### 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-2023 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.7.3], [[email protected]])
7+
AC_INIT([sqlite3mc], [1.7.4], [[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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ The code was mainly developed under Windows, but was tested under Linux as well.
1010

1111
## Version information
1212

13-
* 1.7.3 - *November 2023*
13+
* 1.7.4 - *November 2023*
1414
- Based on SQLite version 3.44.0
15+
- Prevent crashes due to uninitialized cipher tables
1516

1617
For further version information please consult the [CHANGELOG](CHANGELOG.md).
1718

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 7
17-
#define SQLITE3MC_VERSION_RELEASE 3
17+
#define SQLITE3MC_VERSION_RELEASE 4
1818
#define SQLITE3MC_VERSION_SUBRELEASE 0
19-
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 1.7.3"
19+
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 1.7.4"
2020

2121
#endif /* SQLITE3MC_VERSION_H_ */

0 commit comments

Comments
 (0)