Skip to content

Commit cbe2511

Browse files
committed
Prepare release of version 4.0.1
Includes an important bug fix for the encryption extension.
1 parent e997cc9 commit cbe2511

File tree

4 files changed

+472
-466
lines changed

4 files changed

+472
-466
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dnl Copyright (C) 2017-2018 Ulrich Telle <ulrich@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.0.0], [ulrich@telle-online.de])
7+
AC_INIT([wxsqlite3], [4.0.1], [ulrich@telle-online.de])
88

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

include/wx/wxsqlite3_version.h

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
/*
2-
** Name: wxsqlite3_version.h
3-
** Purpose: wxSQLite3 version numbers
4-
** Author: Ulrich Telle
5-
** Created: 2017-02-01
6-
** Copyright: (c) 2017-2018 Ulrich Telle
7-
** License: LGPL-3.0+ WITH WxWindows-exception-3.1
8-
*/
9-
10-
/// \file wxsqlite3_version.h Version information for the wxSQLite3 library
11-
12-
#ifndef _WXSQLITE3_VERSION_H_
13-
#define _WXSQLITE3_VERSION_H_
14-
15-
#define WXSQLITE3_MAJOR_VERSION 4
16-
#define WXSQLITE3_MINOR_VERSION 0
17-
#define WXSQLITE3_RELEASE_NUMBER 0
18-
#define WXSQLITE3_SUBRELEASE_NUMBER 0
19-
#define WXSQLITE3_VERSION_STRING "wxSQLite3 4.0.0"
20-
21-
#endif // _WXSQLITE3_VERSION_H_
1+
/*
2+
** Name: wxsqlite3_version.h
3+
** Purpose: wxSQLite3 version numbers
4+
** Author: Ulrich Telle
5+
** Created: 2017-02-01
6+
** Copyright: (c) 2017-2018 Ulrich Telle
7+
** License: LGPL-3.0+ WITH WxWindows-exception-3.1
8+
*/
9+
10+
/// \file wxsqlite3_version.h Version information for the wxSQLite3 library
11+
12+
#ifndef _WXSQLITE3_VERSION_H_
13+
#define _WXSQLITE3_VERSION_H_
14+
15+
#define WXSQLITE3_MAJOR_VERSION 4
16+
#define WXSQLITE3_MINOR_VERSION 0
17+
#define WXSQLITE3_RELEASE_NUMBER 1
18+
#define WXSQLITE3_SUBRELEASE_NUMBER 0
19+
#define WXSQLITE3_VERSION_STRING "wxSQLite3 4.0.1"
20+
21+
#endif // _WXSQLITE3_VERSION_H_

include/wx/wxsqlite3def.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@
4444
4545
<dl>
4646
47+
<dt><b>4.0.1</b> - <i>April 2018</i></dt>
48+
<dd>
49+
Fixed a bug in the rekeying function of the encryption extension<br>
50+
51+
</dd>
4752
<dt><b>4.0.0</b> - <i>April 2018</i></dt>
4853
<dd>
4954
Introduced multi-cipher support at runtime<br>

0 commit comments

Comments
 (0)