Skip to content

Commit aac7112

Browse files
committedMar 4, 2025··
Prepare release of wxSQLite3 4.10.5
- Upgrade to SQLite3 Multiple Ciphers version 2.1.0 (SQLite version 3.49.1) - Disable AEGIS cipher scheme when compiling with MSVC 2015 or below
1 parent 70d5e1b commit aac7112

9 files changed

+141
-79
lines changed
 

‎CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [4.10.5] - 2025-03-04
11+
12+
- Upgrade to SQLite3 Multiple Ciphers version 2.1.0 (SQLite version 3.49.1)
13+
- Disable AEGIS cipher scheme when compiling with MSVC 2015 or below
14+
1015
## [4.10.4] - 2025-02-21
1116

1217
- Upgrade to SQLite3 Multiple Ciphers version 2.0.4 (SQLite version 3.49.1)
@@ -666,7 +671,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
666671

667672
- First public release
668673

669-
[Unreleased]: ../../compare/v4.10.4...HEAD
674+
[Unreleased]: ../../compare/v4.10.5...HEAD
675+
[4.10.5]: ../../compare/v4.10.4...v4.10.5
670676
[4.10.4]: ../../compare/v4.10.3...v4.10.4
671677
[4.10.3]: ../../compare/v4.10.2...v4.10.3
672678
[4.10.2]: ../../compare/v4.10.1...v4.10.2

‎configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dnl Copyright (C) 2017-2025 Ulrich Telle <github@telle-online.de>, Vadim Zeitlin
44
dnl
55
dnl This file is covered by the same licence as the entire wxSQLite3 package.
66

7-
AC_INIT([wxsqlite3], [4.10.4], [github@telle-online.de])
7+
AC_INIT([wxsqlite3], [4.10.5], [github@telle-online.de])
88

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

‎docs/Doxyfile

+24-11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Doxyfile 1.13.0
1+
# Doxyfile 1.13.2
22

33
# This file describes the settings to be used by the documentation system
44
# Doxygen (www.doxygen.org) for a project.
@@ -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.4
51+
PROJECT_NUMBER = 4.10.5
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
@@ -927,6 +927,14 @@ WARN_NO_PARAMDOC = NO
927927

928928
WARN_IF_UNDOC_ENUM_VAL = NO
929929

930+
# If WARN_LAYOUT_FILE option is set to YES, Doxygen will warn about issues found
931+
# while parsing the user defined layout file, such as missing or wrong elements.
932+
# See also LAYOUT_FILE for details. If set to NO, problems with the layout file
933+
# will be suppressed.
934+
# The default value is: YES.
935+
936+
WARN_LAYOUT_FILE = YES
937+
930938
# If the WARN_AS_ERROR tag is set to YES then Doxygen will immediately stop when
931939
# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS
932940
# then Doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but
@@ -2791,24 +2799,29 @@ DIR_GRAPH_MAX_DEPTH = 1
27912799
# generated by dot. For an explanation of the image formats see the section
27922800
# output formats in the documentation of the dot tool (Graphviz (see:
27932801
# https://www.graphviz.org/)).
2794-
# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
2795-
# to make the SVG files visible in IE 9+ (other browsers do not have this
2796-
# requirement).
2802+
#
2803+
# Note the formats svg:cairo and svg:cairo:cairo cannot be used in combination
2804+
# with INTERACTIVE_SVG (the INTERACTIVE_SVG will be set to NO).
27972805
# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,
2798-
# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
2799-
# png:gdiplus:gdiplus.
2806+
# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus,
2807+
# png:gdiplus:gdiplus, svg:cairo, svg:cairo:cairo, svg:svg, svg:svg:core,
2808+
# gif:cairo, gif:cairo:gd, gif:cairo:gdiplus, gif:gdiplus, gif:gdiplus:gdiplus,
2809+
# gif:gd, gif:gd:gd, jpg:cairo, jpg:cairo:gd, jpg:cairo:gdiplus, jpg:gd,
2810+
# jpg:gd:gd, jpg:gdiplus and jpg:gdiplus:gdiplus.
28002811
# The default value is: png.
28012812
# This tag requires that the tag HAVE_DOT is set to YES.
28022813

28032814
DOT_IMAGE_FORMAT = png
28042815

2805-
# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
2806-
# enable generation of interactive SVG images that allow zooming and panning.
2816+
# If DOT_IMAGE_FORMAT is set to svg or svg:svg or svg:svg:core, then this option
2817+
# can be set to YES to enable generation of interactive SVG images that allow
2818+
# zooming and panning.
28072819
#
28082820
# Note that this requires a modern browser other than Internet Explorer. Tested
28092821
# and working are Firefox, Chrome, Safari, and Opera.
2810-
# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
2811-
# the SVG files visible. Older versions of IE do not have SVG support.
2822+
#
2823+
# Note This option will be automatically disabled when DOT_IMAGE_FORMAT is set
2824+
# to svg:cairo or svg:cairo:cairo.
28122825
# The default value is: NO.
28132826
# This tag requires that the tag HAVE_DOT is set to YES.
28142827

‎include/wx/wxsqlite3_version.h

+2-2
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 4
17+
#define WXSQLITE3_RELEASE_NUMBER 5
1818
#define WXSQLITE3_SUBRELEASE_NUMBER 0
19-
#define WXSQLITE3_VERSION_STRING "wxSQLite3 4.10.4"
19+
#define WXSQLITE3_VERSION_STRING "wxSQLite3 4.10.5"
2020

2121
#endif // WXSQLITE3_VERSION_H_

‎include/wx/wxsqlite3def.h

+7
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@
4646
4747
<dl>
4848
49+
<dt><b>4.10.5</b> - <i>March 2025</i></dt>
50+
<dd>
51+
Upgrade to <i>SQLite3 Multiple Ciphers version 2.1.0 (SQLite version 3.49.1)</i><br>
52+
Disable AEGIS cipher scheme when compiling with MSVC 2015 or below
53+
54+
</dd>
55+
4956
<dt><b>4.10.4</b> - <i>February 2025</i></dt>
5057
<dd>
5158
Upgrade to <i>SQLite3 Multiple Ciphers version 2.0.4 (SQLite version 3.49.1)</i>

‎readme.md

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

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

55-
* 4.10.4 - *February 2025*
55+
* 4.10.5 - *March 2025*
5656

57-
- Upgrade to [SQLite3 Multiple Ciphers 2.0.4](https://github.com/utelle/SQLite3MultipleCiphers/releases/tag/v2.0.4) ([SQLite 3.49.1](https://sqlite.org/releaselog/3_49_1.html))
57+
- Upgrade to [SQLite3 Multiple Ciphers 2.1.0](https://github.com/utelle/SQLite3MultipleCiphers/releases/tag/v2.1.0) ([SQLite 3.49.1](https://sqlite.org/releaselog/3_49_1.html))
58+
- Disable AEGIS cipher scheme when compiling with MSVC 2015 or below
5859

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

0 commit comments

Comments
 (0)
Please sign in to comment.