mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-06 10:46:03 -04:00
Release 3.1.1
This commit is contained in:
parent
a6bb7bcc8f
commit
4e3d36af2d
@ -182,3 +182,7 @@ Version 3.1.0 - August 11 2020
|
|||||||
- #286 Add CMake option to toggle stack protection from chrisdalke/master
|
- #286 Add CMake option to toggle stack protection from chrisdalke/master
|
||||||
- #287 Fixed installation on other than Ubuntu distributions from xvitaly/fix-installation
|
- #287 Fixed installation on other than Ubuntu distributions from xvitaly/fix-installation
|
||||||
- #288 Allow building of sqlite JSON1 extension when building internal sqlite library from zxey/feature-json1-extension
|
- #288 Allow building of sqlite JSON1 extension when building internal sqlite library from zxey/feature-json1-extension
|
||||||
|
|
||||||
|
Version 3.1.1 - August 19 2020
|
||||||
|
- #292 Fix compilation if using SQLITE_HAS_CODEC from sum01/fix_sqlcipher_compile
|
||||||
|
- #293 Remove FindSQLiteCpp.cmake from sum01/fix_283
|
@ -6,7 +6,7 @@
|
|||||||
# or copy at http://opensource.org/licenses/MIT)
|
# or copy at http://opensource.org/licenses/MIT)
|
||||||
cmake_minimum_required(VERSION 3.1) # for "CMAKE_CXX_STANDARD" version
|
cmake_minimum_required(VERSION 3.1) # for "CMAKE_CXX_STANDARD" version
|
||||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") # custom CMake modules like FindSQLiteCpp
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") # custom CMake modules like FindSQLiteCpp
|
||||||
project(SQLiteCpp VERSION 3.1.0)
|
project(SQLiteCpp VERSION 3.1.1)
|
||||||
|
|
||||||
# SQLiteC++ 3.x requires C++11 features
|
# SQLiteC++ 3.x requires C++11 features
|
||||||
if (NOT CMAKE_CXX_STANDARD)
|
if (NOT CMAKE_CXX_STANDARD)
|
||||||
|
2
Doxyfile
2
Doxyfile
@ -38,7 +38,7 @@ PROJECT_NAME = SQLiteC++
|
|||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 3.1.0
|
PROJECT_NUMBER = 3.1.1
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# 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
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
@ -40,5 +40,5 @@
|
|||||||
*
|
*
|
||||||
* WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt
|
* WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt
|
||||||
*/
|
*/
|
||||||
#define SQLITECPP_VERSION "3.01.00" // 3.1.0
|
#define SQLITECPP_VERSION "3.01.01" // 3.1.1
|
||||||
#define SQLITECPP_VERSION_NUMBER 3001001 // 3.1.0
|
#define SQLITECPP_VERSION_NUMBER 3001001 // 3.1.1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user