Skip to content

Commit 7e8ecba

Browse files
committed
Update SQLite to version 3.45.1
1 parent e5ed494 commit 7e8ecba

File tree

8 files changed

+282
-187
lines changed

8 files changed

+282
-187
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+
## [1.8.3] - 2024-01-31
11+
12+
### Changed
13+
14+
- Based on SQLite version 3.45.1
15+
1016
## [1.8.2] - 2024-01-16
1117

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

478-
[Unreleased]: ../../compare/v1.8.2...HEAD
484+
[Unreleased]: ../../compare/v1.8.3...HEAD
485+
[1.8.3]: ../../compare/v1.8.2...v1.8.3
479486
[1.8.2]: ../../compare/v1.8.1...v1.8.2
480487
[1.8.1]: ../../compare/v1.8.0...v1.8.1
481488
[1.8.0]: ../../compare/v1.7.4...v1.8.0

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
dnl Process this script with autoconf to create configure for sqlite3mc library
22
dnl
3-
dnl Copyright (C) 2019-2023 Ulrich Telle <[email protected]>
3+
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.2], [[email protected]])
7+
AC_INIT([sqlite3mc], [1.8.3], [[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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ The code was mainly developed under Windows, but was tested under Linux as well.
1010

1111
## Version information
1212

13-
* 1.8.2 - *January 2024*
14-
- Based on SQLite version 3.45.0
13+
* 1.8.3 - *January 2024*
14+
- Based on SQLite version 3.45.1
1515

1616
For further version information please consult the [CHANGELOG](CHANGELOG.md).
1717

src/rekeyvacuum.c

Lines changed: 1 addition & 1 deletion
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.45.0 amalgamation.
30+
** This code is generated by the script rekeyvacuum.sh from SQLite version 3.45.1 amalgamation.
3131
*/
3232
SQLITE_PRIVATE SQLITE_NOINLINE int sqlite3mcRunVacuumForRekey(
3333
char **pzErrMsg, /* Write error message here */

0 commit comments

Comments
 (0)