Skip to content

Commit 3f8e0bc

Browse files
committed
Prepare release of version 2.3.2
1 parent 92d8a6c commit 3f8e0bc

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.3.2] - 2026-03-19
11+
12+
### Fixed
13+
14+
- Fixed issue [#227](../../issues/226) - Compile AEGIS with clang version 22 and above
15+
- Fixed issue [#228](../../issues/227) - Function `sqlite3mc_cipher_name` not thread-safe
16+
- Fixed issue [#229](../../issues/228) - Symbol conflicts when static linking to both `sqlite3mc` and `libsodium`
17+
1018
## [2.3.1] - 2026-03-13
1119

1220
### Changed
@@ -720,7 +728,8 @@ The following ciphers are supported:
720728
- AES 256 Bit CBC - SHA1/SHA256/SHA512 HMAC ([SQLCipher](https://www.zetetic.net/sqlcipher/), database versions 1, 2, 3, and 4)
721729
- RC4 - No HMAC ([System.Data.SQLite](http://system.data.sqlite.org))
722730

723-
[Unreleased]: ../../compare/v2.3.1...HEAD
731+
[Unreleased]: ../../compare/v2.3.2...HEAD
732+
[2.3.2]: ../../compare/v2.3.1...v2.3.2
724733
[2.3.1]: ../../compare/v2.3.0...v2.3.1
725734
[2.3.0]: ../../compare/v2.2.7...v2.3.0
726735
[2.2.7]: ../../compare/v2.2.6...v2.2.7

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.24.0.0)
2-
project(sqlite3mc VERSION 2.3.1)
2+
project(sqlite3mc VERSION 2.3.2)
33

44
# Helper macro
55
macro(_Enable_MT _target)

configure.ac

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

7-
AC_INIT([sqlite3mc], [2.3.1], [github@telle-online.de])
7+
AC_INIT([sqlite3mc], [2.3.2], [github@telle-online.de])
88

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

readme.md

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

1111
## Version information
1212

13-
* 2.3.1 - *March 2026*
14-
- Based on SQLite version 3.51.3
13+
* 2.3.2 - *March 2026*
14+
- Fixed issue #227: Compile AEGIS with clang version 22 and above
15+
- Fixed issue #228: Function `sqlite3mc_cipher_name` not thread-safe
16+
- Fixed issue #229: Symbol conflicts when static linking to both `sqlite3mc` and `libsodium`
1517

1618
For further version information please consult the [CHANGELOG](CHANGELOG.md).
1719

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 2
1616
#define SQLITE3MC_VERSION_MINOR 3
17-
#define SQLITE3MC_VERSION_RELEASE 1
17+
#define SQLITE3MC_VERSION_RELEASE 2
1818
#define SQLITE3MC_VERSION_SUBRELEASE 0
19-
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 2.3.1"
19+
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 2.3.2"
2020

2121
#endif /* SQLITE3MC_VERSION_H_ */

0 commit comments

Comments
 (0)