Skip to content

Commit 3477dec

Browse files
committed
Prepare release of version 2.2.2
- Fix for SIGILL crash under Linux without AVX support
1 parent 0a8ea9a commit 3477dec

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.2.2] - 2025-07-13
11+
12+
### Fixed
13+
14+
- Fixed issue [wxSQLite3 #126](https://github.com/utelle/wxsqlite3/issues/126)) - crash with "illegal instruction" on x86_64 Linux machines without AVX support
15+
1016
## [2.2.1] - 2025-07-09
1117

1218
### Added
@@ -654,7 +660,8 @@ The following ciphers are supported:
654660
- AES 256 Bit CBC - SHA1/SHA256/SHA512 HMAC ([SQLCipher](https://www.zetetic.net/sqlcipher/), database versions 1, 2, 3, and 4)
655661
- RC4 - No HMAC ([System.Data.SQLite](http://system.data.sqlite.org))
656662

657-
[Unreleased]: ../../compare/v2.2.1...HEAD
663+
[Unreleased]: ../../compare/v2.2.2...HEAD
664+
[2.2.2]: ../../compare/v2.2.1...v2.2.2
658665
[2.2.1]: ../../compare/v2.2.0...v2.2.1
659666
[2.2.0]: ../../compare/v2.1.3...v2.2.0
660667
[2.1.3]: ../../compare/v2.1.2...v2.1.3

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.1.3)
2+
project(sqlite3mc VERSION 2.2.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-2025 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], [2.2.1], [[email protected]])
7+
AC_INIT([sqlite3mc], [2.2.2], [[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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@ The code was mainly developed under Windows, but was tested under Linux as well.
1010

1111
## Version information
1212

13-
* 2.2.1 - *July 2025*
14-
- Based on SQLite version 3.50.2
15-
- Added plaintext header option to some ciphers (_chacha20_, _ascon128_, and _aegis_) (issue #209)
16-
- Simplified and unified raw key and salt specification
13+
* 2.2.2 - *July 2025*
14+
- Fixed issue [wxSQLite3 #126](https://github.com/utelle/wxsqlite3/issues/126)) - crash with "illegal instruction" on x86_64 Linux machines **without AVX** support
1715

1816
For further version information please consult the [CHANGELOG](CHANGELOG.md).
1917

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 2
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.2.1"
19+
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 2.2.2"
2020

2121
#endif /* SQLITE3MC_VERSION_H_ */

0 commit comments

Comments
 (0)