Skip to content

Commit 8d84f87

Browse files
committed
Prepare release of version 1.8.7
- Based on SQLite version 3.46.1
1 parent 7910951 commit 8d84f87

10 files changed

+557
-538
lines changed

CHANGELOG.md

+8-1
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+
## [1.8.7] - 2024-08-14
11+
12+
### Changed
13+
14+
- Based on SQLite version 3.46.1
15+
1016
## [1.8.6] - 2024-06-14
1117

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

519-
[Unreleased]: ../../compare/v1.8.6...HEAD
525+
[Unreleased]: ../../compare/v1.8.7...HEAD
526+
[1.8.7]: ../../compare/v1.8.6...v1.8.7
520527
[1.8.6]: ../../compare/v1.8.5...v1.8.6
521528
[1.8.5]: ../../compare/v1.8.4...v1.8.5
522529
[1.8.4]: ../../compare/v1.8.3...v1.8.4

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dnl Copyright (C) 2019-2024 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.8.6], [[email protected]])
7+
AC_INIT([sqlite3mc], [1.8.7], [[email protected]])
88

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

readme.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,8 @@ The code was mainly developed under Windows, but was tested under Linux as well.
1010

1111
## Version information
1212

13-
* 1.8.6 - *June 2024*
14-
- Based on SQLite version 3.46.0
15-
- The cipher configuration parameter `legacy_page_size` now accepts only valid page sizes
16-
- The cipher configuration parameter `plaintext_header_size` now accepts only values that are multiples of 16
17-
- Cleaned up code (removed trailing white space, removed extern keyword in function declarations, added SQLITE_PRIVATE for several internal functions)
18-
- Fixed issues #156, #158, #160, #162, #164, #165, #166, #167, #168
13+
* 1.8.7 - *August 2024*
14+
- Based on SQLite version 3.46.1
1915

2016
For further version information please consult the [CHANGELOG](CHANGELOG.md).
2117

src/rekeyvacuum.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
** Change 4: Call sqlite3mcBtreeSetPageSize instead of sqlite3BtreeSetPageSize for main database
2828
** (sqlite3mcBtreeSetPageSize allows to reduce the number of reserved bytes)
2929
**
30-
** This code is generated by the script rekeyvacuum.sh from SQLite version 3.46.0 amalgamation.
30+
** This code is generated by the script rekeyvacuum.sh from SQLite version 3.46.1 amalgamation.
3131
*/
3232
SQLITE_PRIVATE SQLITE_NOINLINE int sqlite3mcRunVacuumForRekey(
3333
char **pzErrMsg, /* Write error message here */

0 commit comments

Comments
 (0)