Skip to content

Commit a9006c0

Browse files
committed
Prepare release of version 1.7.3
- Based on SQLite version 3.44.0
1 parent 1b8d7d1 commit a9006c0

File tree

16 files changed

+8775
-4796
lines changed

16 files changed

+8775
-4796
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.7.3] - 2023-11-05
11+
12+
### Changed
13+
14+
- Based on SQLite version 3.44.0
15+
1016
## [1.7.2] - 2023-10-11
1117

1218
### 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-2023 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.7.2], [[email protected]])
7+
AC_INIT([sqlite3mc], [1.7.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.7.2 - *October 2023*
14-
- Based on SQLite version 3.43.2
13+
* 1.7.3 - *November 2023*
14+
- Based on SQLite version 3.44.0
1515

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

src/carray.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,11 @@ static sqlite3_module carrayModule = {
409409
0, /* xRollback */
410410
0, /* xFindMethod */
411411
0, /* xRename */
412+
0, /* xSavepoint */
413+
0, /* xRelease */
414+
0, /* xRollbackTo */
415+
0, /* xShadow */
416+
0 /* xIntegrity */
412417
};
413418

414419
/*

src/csv.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -897,6 +897,11 @@ static sqlite3_module CsvModule = {
897897
0, /* xRollback */
898898
0, /* xFindMethod */
899899
0, /* xRename */
900+
0, /* xSavepoint */
901+
0, /* xRelease */
902+
0, /* xRollbackTo */
903+
0, /* xShadowName */
904+
0 /* xIntegrity */
900905
};
901906

902907
#ifdef SQLITE_TEST
@@ -929,6 +934,11 @@ static sqlite3_module CsvModuleFauxWrite = {
929934
0, /* xRollback */
930935
0, /* xFindMethod */
931936
0, /* xRename */
937+
0, /* xSavepoint */
938+
0, /* xRelease */
939+
0, /* xRollbackTo */
940+
0, /* xShadowName */
941+
0 /* xIntegrity */
932942
};
933943
#endif /* SQLITE_TEST */
934944

src/fileio.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -983,6 +983,7 @@ static int fsdirRegister(sqlite3 *db){
983983
0, /* xRelease */
984984
0, /* xRollbackTo */
985985
0, /* xShadowName */
986+
0 /* xIntegrity */
986987
};
987988

988989
int rc = sqlite3_create_module(db, "fsdir", &fsdirModule, 0);

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.43.2 amalgamation.
30+
** This code is generated by the script rekeyvacuum.sh from SQLite version 3.44.0 amalgamation.
3131
*/
3232
SQLITE_PRIVATE SQLITE_NOINLINE int sqlite3mcRunVacuumForRekey(
3333
char **pzErrMsg, /* Write error message here */

src/series.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,8 @@ static sqlite3_module seriesModule = {
557557
0, /* xSavepoint */
558558
0, /* xRelease */
559559
0, /* xRollbackTo */
560-
0 /* xShadowName */
560+
0, /* xShadowName */
561+
0 /* xIntegrity */
561562
};
562563

563564
#endif /* SQLITE_OMIT_VIRTUALTABLE */

0 commit comments

Comments
 (0)