Skip to content

Commit

Permalink
Prepare release of wxSQLite3 4.10.1
Browse files Browse the repository at this point in the history
- Upgrade to SQLite3 Multiple Ciphers version 2.0.1 (SQLite version 3.47.2)
- Fixed issue #120 - crashes on some Linux systems due to _illegal instruction_ exceptions related to the code of the new cipher scheme _AEGIS_
  • Loading branch information
utelle committed Jan 6, 2025
1 parent 1894053 commit a15e36c
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 22 deletions.
13 changes: 7 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.10.1] - 2025-01-06

- Upgrade to SQLite3 Multiple Ciphers version 2.0.1 (SQLite version 3.47.2)
- Fixed issue #120 - crashes on some Linux systems due to _illegal instruction_ exceptions related to the code of the new cipher scheme _AEGIS_

## [4.10.0] - 2024-12-31

- Upgrade to SQLite3 Multiple Ciphers version 2.0.0 (SQLite version 3.47.2)
Expand Down Expand Up @@ -649,12 +654,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- First public release


### Changed
### Fixed
### Added

[Unreleased]: ../../compare/v4.10.0...HEAD
[Unreleased]: ../../compare/v4.10.1...HEAD
[4.10.1]: ../../compare/v4.10.0...v4.10.1
[4.10.0]: ../../compare/v4.9.12...v4.10.0
[4.9.12]: ../../compare/v4.9.11...v4.9.12
[4.9.11]: ../../compare/v4.9.10...v4.9.11
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) 2017-2024 Ulrich Telle <ulrich@telle-online.de>, Vadim Zeitlin
dnl
dnl This file is covered by the same licence as the entire wxSQLite3 package.

AC_INIT([wxsqlite3], [4.10.0], [ulrich@telle-online.de])
AC_INIT([wxsqlite3], [4.10.1], [ulrich@telle-online.de])

dnl This is the version tested with, might work with earlier ones.
AC_PREREQ([2.69])
Expand Down
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = wxSQLite3
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 4.10.0
PROJECT_NUMBER = 4.10.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewers a
Expand Down
6 changes: 3 additions & 3 deletions include/wx/wxsqlite3_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
** Purpose: wxSQLite3 version numbers
** Author: Ulrich Telle
** Created: 2017-02-01
** Copyright: (c) 2017-2024 Ulrich Telle
** Copyright: (c) 2017-2025 Ulrich Telle
** License: LGPL-3.0+ WITH WxWindows-exception-3.1
*/

Expand All @@ -14,8 +14,8 @@

#define WXSQLITE3_MAJOR_VERSION 4
#define WXSQLITE3_MINOR_VERSION 10
#define WXSQLITE3_RELEASE_NUMBER 0
#define WXSQLITE3_RELEASE_NUMBER 1
#define WXSQLITE3_SUBRELEASE_NUMBER 0
#define WXSQLITE3_VERSION_STRING "wxSQLite3 4.10.0"
#define WXSQLITE3_VERSION_STRING "wxSQLite3 4.10.1"

#endif // WXSQLITE3_VERSION_H_
9 changes: 8 additions & 1 deletion include/wx/wxsqlite3def.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
** Purpose: wxWidgets wrapper around the SQLite3 embedded database library.
** Author: Ulrich Telle
** Created: 2005-07-14
** Copyright: (c) 2005-2024 Ulrich Telle
** Copyright: (c) 2005-2025 Ulrich Telle
** License: LGPL-3.0+ WITH WxWindows-exception-3.1
*/

Expand Down Expand Up @@ -46,6 +46,13 @@
<dl>
<dt><b>4.10.1</b> - <i>January 2025</i></dt>
<dd>
Upgrade to <i>SQLite3 Multiple Ciphers version 2.0.1 (SQLite version 3.47.2)</i><br>
Fixed issue #120 - crashes on some Linux systems due to <i>illegal instruction</i> exceptions related to the code of the new cipher scheme <i>AEGIS</i><br>
</dd>
<dt><b>4.10.0</b> - <i>December 2024</i></dt>
<dd>
Upgrade to <i>SQLite3 Multiple Ciphers version 2.0.0 (SQLite version 3.47.2)</i><br>
Expand Down
7 changes: 3 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,10 @@ Currently the _CMake_ support is experimental and limited to Windows platforms (

## <a name="history"></a>Version history

* 4.10.0 - *December 2024*
* 4.10.1 - *January 2025*

- Upgrade to SQLite3 Multiple Ciphers version 2.0.0 (SQLite version 3.47.2)
- Removed support for _User Authentication_ extension
- Added new cipher scheme AEGIS
- Upgrade to SQLite3 Multiple Ciphers version 2.0.1 (SQLite version 3.47.2)
- Fixed issue #120 - crashes on some Linux systems due to _illegal instruction_ exceptions related to the code of the new cipher scheme _AEGIS_

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

Expand Down
6 changes: 3 additions & 3 deletions src/sqlite3mc_amalgamation.c
Original file line number Diff line number Diff line change
Expand Up @@ -260902,7 +260902,7 @@ SQLITE_API const char *sqlite3_sourceid(void){ return SQLITE_SOURCE_ID; }
** Purpose: SQLite3 Multiple Ciphers version numbers
** Author: Ulrich Telle
** Created: 2020-08-05
** Copyright: (c) 2020-2024 Ulrich Telle
** Copyright: (c) 2020-2025 Ulrich Telle
** License: MIT
*/

Expand All @@ -260913,9 +260913,9 @@ SQLITE_API const char *sqlite3_sourceid(void){ return SQLITE_SOURCE_ID; }

#define SQLITE3MC_VERSION_MAJOR 2
#define SQLITE3MC_VERSION_MINOR 0
#define SQLITE3MC_VERSION_RELEASE 0
#define SQLITE3MC_VERSION_RELEASE 1
#define SQLITE3MC_VERSION_SUBRELEASE 0
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 2.0.0"
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 2.0.1"

#endif /* SQLITE3MC_VERSION_H_ */
/*** End of #include "sqlite3mc_version.h" ***/
Expand Down
6 changes: 3 additions & 3 deletions src/sqlite3mc_amalgamation.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
** Purpose: SQLite3 Multiple Ciphers version numbers
** Author: Ulrich Telle
** Created: 2020-08-05
** Copyright: (c) 2020-2024 Ulrich Telle
** Copyright: (c) 2020-2025 Ulrich Telle
** License: MIT
*/

Expand All @@ -31,9 +31,9 @@

#define SQLITE3MC_VERSION_MAJOR 2
#define SQLITE3MC_VERSION_MINOR 0
#define SQLITE3MC_VERSION_RELEASE 0
#define SQLITE3MC_VERSION_RELEASE 1
#define SQLITE3MC_VERSION_SUBRELEASE 0
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 2.0.0"
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 2.0.1"

#endif /* SQLITE3MC_VERSION_H_ */
/*** End of #include "sqlite3mc_version.h" ***/
Expand Down

0 comments on commit a15e36c

Please sign in to comment.