Skip to content

Commit

Permalink
Preparation of release of wxSQLite3 3.5.2
Browse files Browse the repository at this point in the history
Added SHA3 extension to SQLite3 encryption extension
  • Loading branch information
utelle committed Mar 19, 2017
1 parent d1ff73d commit e79d1ef
Show file tree
Hide file tree
Showing 15 changed files with 882 additions and 154 deletions.
8 changes: 4 additions & 4 deletions build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ endif

clean:
ifeq ($(wxMonolithic),1)
@${MAKE} --no-print-directory -C . -f wxsqlite3.make clean
@${MAKE} --no-print-directory -C . -f minimal.make clean
@${MAKE} --no-print-directory -C . -f treeview.make clean
else
@${MAKE} --no-print-directory -C . -f wxsqlite3_mono.make clean
@${MAKE} --no-print-directory -C . -f minimal_mono.make clean
@${MAKE} --no-print-directory -C . -f treeview_mono.make clean
else
@${MAKE} --no-print-directory -C . -f wxsqlite3.make clean
@${MAKE} --no-print-directory -C . -f minimal.make clean
@${MAKE} --no-print-directory -C . -f treeview.make clean
endif

help:
Expand Down
24 changes: 12 additions & 12 deletions build/wxsqlite3.make

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions build/wxsqlite3_mono.make

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions build/wxsqlite3_vc10_wxsqlite3.vcxproj

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions build/wxsqlite3_vc11_wxsqlite3.vcxproj

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions build/wxsqlite3_vc12_wxsqlite3.vcxproj

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions build/wxsqlite3_vc14_wxsqlite3.vcxproj

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions build/wxsqlite3_vc15_wxsqlite3.vcxproj

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = wxSQLite3
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 3.5.1
PROJECT_NUMBER = 3.5.2

# 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 viewer a
Expand Down
2 changes: 1 addition & 1 deletion include/wx/wxsqlite3def.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<dl>
<dt><b>3.5.2</b> - <i>February 2017</i></dt>
<dt><b>3.5.2</b> - <i>March 2017</i></dt>
<dd>
Upgrade to SQLite version 3.17.0<br>
Fixed minor issue in SQLite encryption extension related to symbol SQLITE_DEBUG<br>
Expand Down
1 change: 1 addition & 0 deletions premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ project "wxsqlite3"
"SQLITE_CORE",
"SQLITE_ENABLE_EXTFUNC",
"SQLITE_ENABLE_CSV",
"SQLITE_ENABLE_SHA3",
"SQLITE_USE_URI",
"SQLITE_USER_AUTHENTICATION"
}
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ tools operate in Unicode or UTF-8 mode.

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

* 3.5.2 - *February 2017*
* 3.5.2 - *March 2017*
- Upgrade to SQLite version 3.17.0
- Fixed minor issue in SQLite encryption extension related to symbol `SQLITE_DEBUG`
- Modified build system for GNU make (support monolithic wxWidgets build)
Expand Down
2 changes: 2 additions & 0 deletions sqlite3/secure/premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ project "sqlite3lib"
"SQLITE_CORE",
"SQLITE_ENABLE_EXTFUNC",
"SQLITE_ENABLE_CSV",
"SQLITE_ENABLE_SHA3",
"SQLITE_USE_URI",
"SQLITE_USER_AUTHENTICATION"
}
Expand Down Expand Up @@ -139,6 +140,7 @@ project "sqlite3dll"
"SQLITE_CORE",
"SQLITE_ENABLE_EXTFUNC",
"SQLITE_ENABLE_CSV",
"SQLITE_ENABLE_SHA3",
"SQLITE_USE_URI",
"SQLITE_USER_AUTHENTICATION"
}
Expand Down
Loading

0 comments on commit e79d1ef

Please sign in to comment.