Skip to content

Commit

Permalink
Prepare release of version 1.7.3
Browse files Browse the repository at this point in the history
- Based on SQLite version 3.44.0
  • Loading branch information
utelle committed Nov 5, 2023
1 parent 1b8d7d1 commit a9006c0
Show file tree
Hide file tree
Showing 16 changed files with 8,775 additions and 4,796 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.7.3] - 2023-11-05

### Changed

- Based on SQLite version 3.44.0

## [1.7.2] - 2023-10-11

### Changed
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dnl Copyright (C) 2019-2023 Ulrich Telle <[email protected]>
dnl
dnl This file is covered by the same licence as the entire SQLite3 Multiple Ciphers package.

AC_INIT([sqlite3mc], [1.7.2], [[email protected]])
AC_INIT([sqlite3mc], [1.7.3], [[email protected]])

dnl This is the version tested with, might work with earlier ones.
AC_PREREQ([2.69])
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ The code was mainly developed under Windows, but was tested under Linux as well.

## Version information

* 1.7.2 - *October 2023*
- Based on SQLite version 3.43.2
* 1.7.3 - *November 2023*
- Based on SQLite version 3.44.0

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

Expand Down
5 changes: 5 additions & 0 deletions src/carray.c
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,11 @@ static sqlite3_module carrayModule = {
0, /* xRollback */
0, /* xFindMethod */
0, /* xRename */
0, /* xSavepoint */
0, /* xRelease */
0, /* xRollbackTo */
0, /* xShadow */
0 /* xIntegrity */
};

/*
Expand Down
10 changes: 10 additions & 0 deletions src/csv.c
Original file line number Diff line number Diff line change
Expand Up @@ -897,6 +897,11 @@ static sqlite3_module CsvModule = {
0, /* xRollback */
0, /* xFindMethod */
0, /* xRename */
0, /* xSavepoint */
0, /* xRelease */
0, /* xRollbackTo */
0, /* xShadowName */
0 /* xIntegrity */
};

#ifdef SQLITE_TEST
Expand Down Expand Up @@ -929,6 +934,11 @@ static sqlite3_module CsvModuleFauxWrite = {
0, /* xRollback */
0, /* xFindMethod */
0, /* xRename */
0, /* xSavepoint */
0, /* xRelease */
0, /* xRollbackTo */
0, /* xShadowName */
0 /* xIntegrity */
};
#endif /* SQLITE_TEST */

Expand Down
1 change: 1 addition & 0 deletions src/fileio.c
Original file line number Diff line number Diff line change
Expand Up @@ -983,6 +983,7 @@ static int fsdirRegister(sqlite3 *db){
0, /* xRelease */
0, /* xRollbackTo */
0, /* xShadowName */
0 /* xIntegrity */
};

int rc = sqlite3_create_module(db, "fsdir", &fsdirModule, 0);
Expand Down
2 changes: 1 addition & 1 deletion src/rekeyvacuum.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
** Change 4: Call sqlite3mcBtreeSetPageSize instead of sqlite3BtreeSetPageSize for main database
** (sqlite3mcBtreeSetPageSize allows to reduce the number of reserved bytes)
**
** This code is generated by the script rekeyvacuum.sh from SQLite version 3.43.2 amalgamation.
** This code is generated by the script rekeyvacuum.sh from SQLite version 3.44.0 amalgamation.
*/
SQLITE_PRIVATE SQLITE_NOINLINE int sqlite3mcRunVacuumForRekey(
char **pzErrMsg, /* Write error message here */
Expand Down
3 changes: 2 additions & 1 deletion src/series.c
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,8 @@ static sqlite3_module seriesModule = {
0, /* xSavepoint */
0, /* xRelease */
0, /* xRollbackTo */
0 /* xShadowName */
0, /* xShadowName */
0 /* xIntegrity */
};

#endif /* SQLITE_OMIT_VIRTUALTABLE */
Expand Down
Loading

0 comments on commit a9006c0

Please sign in to comment.