Skip to content

Commit af670fa

Browse files
committed
Update CHANGELOG and bump version
1 parent 9483f9f commit af670fa

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Added
11+
12+
- Added plaintext header option to some ciphers (issue [#209](../../issues/209))
13+
This option, added to ciphers _chacha20_, _ascon128_, and _aegis_, keeps the database header partially unencrypted and works in the same way as for the cipher scheme _sqlcipher_.
14+
15+
### Changed
16+
17+
- Simplified and unified raw key and salt specification
18+
- raw keys (and optionally salt) can be given in both formats, _SQLCipher_ or _sqleet_, for all cipher schemes supporting raw key specification (_chacha20_, _sqlcipher_, _ascon128_, _aegis_)
19+
- the cipher salt can now also be specified via "pragma cipher_salt" - pragma takes precedence over URI parameter
20+
- the "cipher" URI parameter is no longer mandatory for the default cipher scheme
21+
1022
## [2.2.0] - 2025-07-01
1123

1224
### 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-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.0], [[email protected]])
7+
AC_INIT([sqlite3mc], [2.2.1], [[email protected]])
88

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

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 0
17+
#define SQLITE3MC_VERSION_RELEASE 1
1818
#define SQLITE3MC_VERSION_SUBRELEASE 0
19-
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 2.2.0"
19+
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 2.2.1"
2020

2121
#endif /* SQLITE3MC_VERSION_H_ */

0 commit comments

Comments
 (0)