Skip to content

Commit 95b9c9b

Browse files
committed
Prepare release of wxSQLite3 4.10.2
- Upgrade to SQLite3 Multiple Ciphers version 2.0.2 (SQLite version 3.48.0)
1 parent a15e36c commit 95b9c9b

File tree

8 files changed

+1406
-761
lines changed

8 files changed

+1406
-761
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [4.10.2] - 2025-01-16
11+
12+
- Upgrade to SQLite3 Multiple Ciphers version 2.0.2 (SQLite version 3.48.0)
13+
1014
## [4.10.1] - 2025-01-06
1115

1216
- Upgrade to SQLite3 Multiple Ciphers version 2.0.1 (SQLite version 3.47.2)
@@ -654,7 +658,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
654658

655659
- First public release
656660

657-
[Unreleased]: ../../compare/v4.10.1...HEAD
661+
[Unreleased]: ../../compare/v4.10.2...HEAD
662+
[4.10.2]: ../../compare/v4.10.1...v4.10.2
658663
[4.10.1]: ../../compare/v4.10.0...v4.10.1
659664
[4.10.0]: ../../compare/v4.9.12...v4.10.0
660665
[4.9.12]: ../../compare/v4.9.11...v4.9.12

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 wxsqlite3 library
22
dnl
3-
dnl Copyright (C) 2017-2024 Ulrich Telle <[email protected]>, Vadim Zeitlin <[email protected]>
3+
dnl Copyright (C) 2017-2025 Ulrich Telle <[email protected]>, Vadim Zeitlin <[email protected]>
44
dnl
55
dnl This file is covered by the same licence as the entire wxSQLite3 package.
66

7-
AC_INIT([wxsqlite3], [4.10.1], [[email protected]])
7+
AC_INIT([wxsqlite3], [4.10.2], [[email protected]])
88

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

docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = wxSQLite3
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 4.10.1
51+
PROJECT_NUMBER = 4.10.2
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewers a

include/wx/wxsqlite3_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
#define WXSQLITE3_MAJOR_VERSION 4
1616
#define WXSQLITE3_MINOR_VERSION 10
17-
#define WXSQLITE3_RELEASE_NUMBER 1
17+
#define WXSQLITE3_RELEASE_NUMBER 2
1818
#define WXSQLITE3_SUBRELEASE_NUMBER 0
19-
#define WXSQLITE3_VERSION_STRING "wxSQLite3 4.10.1"
19+
#define WXSQLITE3_VERSION_STRING "wxSQLite3 4.10.2"
2020

2121
#endif // WXSQLITE3_VERSION_H_

include/wx/wxsqlite3def.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,16 @@
4646
4747
<dl>
4848
49+
<dt><b>4.10.2</b> - <i>January 2025</i></dt>
50+
<dd>
51+
Upgrade to <i>SQLite3 Multiple Ciphers version 2.0.2 (SQLite version 3.48.0)</i>
52+
53+
</dd>
54+
4955
<dt><b>4.10.1</b> - <i>January 2025</i></dt>
5056
<dd>
5157
Upgrade to <i>SQLite3 Multiple Ciphers version 2.0.1 (SQLite version 3.47.2)</i><br>
52-
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>
58+
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>
5359
5460
</dd>
5561

readme.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,9 @@ Currently the _CMake_ support is experimental and limited to Windows platforms (
5252

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

55-
* 4.10.1 - *January 2025*
55+
* 4.10.2 - *January 2025*
5656

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

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

0 commit comments

Comments
 (0)