Skip to content

Commit fbaf4e7

Browse files
committed
Release preparations for wxSQLite3 3.5.0
1 parent c90216c commit fbaf4e7

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

docs/Doxyfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Doxyfile 1.8.12
1+
# Doxyfile 1.8.13
22

33
# This file describes the settings to be used by the documentation system
44
# doxygen (www.doxygen.org) for a project.
@@ -38,7 +38,7 @@ PROJECT_NAME = wxSQLite3
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 3.4.1
41+
PROJECT_NUMBER = 3.5.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a
@@ -2405,6 +2405,11 @@ DIAFILE_DIRS =
24052405

24062406
PLANTUML_JAR_PATH =
24072407

2408+
# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a
2409+
# configuration file for plantuml.
2410+
2411+
PLANTUML_CFG_FILE =
2412+
24082413
# When using plantuml, the specified paths are searched for files specified by
24092414
# the !include statement in a plantuml block.
24102415

include/wx/wxsqlite3.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2225,6 +2225,7 @@ class WXDLLIMPEXP_SQLITE3 wxSQLite3Database
22252225
* Execute a data defining or manipulating SQL statement given as a utf-8 character string,
22262226
* i.e. create, alter, drop, insert, update, delete and so on
22272227
* \param sql query string
2228+
* \param saveRC flag whether to save the SQLite return code in case of a rollback
22282229
* \return the number of database rows that were changed (or inserted or deleted)
22292230
*/
22302231
int ExecuteUpdate(const char* sql, bool saveRC = false);

include/wx/wxsqlite3def.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
<dd>
5151
Upgrade to SQLite version 3.16.2<br>
5252
SQLite3 library now integrated part of wxSQLite3<br>
53-
Build system overhauled (in progress)<br>
53+
Build system overhauled<br>
54+
Added Travis Continuous Integration<br>
5455
5556
5657
</dd>

sqlite3/secure/Readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ This directory contains the files belonging to the SQLite3 encryption
22
extension provided by wxSQLite3.
33

44
There is now support for Premake (http://http://premake.github.io/).
5-
Premake 5.0-alpha9 or higher is recommended.
5+
Premake 5.0-alpha11 or higher is recommended.
66

77
Precompiled SQLite3 binaries for Windows will be provided as separate
88
downloads.

sqlite3/secure/premake5.lua

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ workspace "SQLite3"
4040
"DEBUG",
4141
"_DEBUG"
4242
}
43-
flags { "Symbols" }
43+
symbols "On"
4444

4545
filter { "configurations:Release*" }
4646
defines {
@@ -60,7 +60,8 @@ project "sqlite3lib"
6060
["Header Files"] = { "**.h" },
6161
["Source Files"] = { "**/sqlite3secure.c", "**.def", "**.rc" }
6262
}
63-
flags { "Unicode", "StaticRuntime" }
63+
characterset ("Unicode")
64+
flags { "StaticRuntime" }
6465

6566
location( BUILDDIR )
6667
targetname "sqlite3"
@@ -116,7 +117,8 @@ project "sqlite3dll"
116117
["Header Files"] = { "**.h" },
117118
["Source Files"] = { "**/sqlite3secure.c", "**.def", "**.rc" }
118119
}
119-
flags { "Unicode", "StaticRuntime" }
120+
characterset ("Unicode")
121+
flags { "StaticRuntime" }
120122

121123
location( BUILDDIR )
122124
targetname "sqlite3"
@@ -170,7 +172,8 @@ project "sqlite3shell"
170172
["Source Files"] = { "**.c", "**.rc" }
171173
}
172174
files { "src/sqlite3.h", "src/shell.c", "src/sqlite3shell.rc" }
173-
flags { "Unicode", "StaticRuntime" }
175+
characterset ("Unicode")
176+
flags { "StaticRuntime" }
174177
links { "sqlite3lib" }
175178

176179
location( BUILDDIR )

0 commit comments

Comments
 (0)