File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,11 @@ Version 3.0.0 - January 31 2020
174174- #234 support for external sqlite3 (BioDataAnalysis/emmenlau)
175175- #243 adding a pure attribute to getIndex() (KOLANICH)
176176
177- Version 3.x.x
177+ Version 3.1.0 - August 11 2020
178178- Update SQLite3 from 3.30.1 to 3.32.3 (2020-06-18)
179-
179+ - #274 Install both cmake files into same lib directory from tcraigtyler/master
180+ - #275 Add a method on Statement to get the declared type of a column. from daniel-schmidt/master
181+ - #284 Add SQLITE_OPEN_FULLMUTEX flag from rwrx/fullmutex-flag
182+ - #286 Add CMake option to toggle stack protection from chrisdalke/master
183+ - #287 Fixed installation on other than Ubuntu distributions from xvitaly/fix-installation
184+ - #288 Allow building of sqlite JSON1 extension when building internal sqlite library from zxey/feature-json1-extension
Original file line number Diff line number Diff line change 66# or copy at http://opensource.org/licenses/MIT)
77cmake_minimum_required (VERSION 3.1) # for "CMAKE_CXX_STANDARD" version
88list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR} /cmake" ) # custom CMake modules like FindSQLiteCpp
9- project (SQLiteCpp VERSION 3.0 .0)
9+ project (SQLiteCpp VERSION 3.1 .0)
1010
1111# SQLiteC++ 3.x requires C++11 features
1212if (NOT CMAKE_CXX_STANDARD)
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ PROJECT_NAME = SQLiteC++
3838# could be handy for archiving the generated documentation or if some version
3939# control system is used.
4040
41- PROJECT_NUMBER = 3.0 .0
41+ PROJECT_NUMBER = 3.1 .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
Original file line number Diff line number Diff line change 4040 *
4141 * WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt
4242 */
43- #define SQLITECPP_VERSION "3.00 .00" // 3.0 .0
44- #define SQLITECPP_VERSION_NUMBER 3000000 // 3.0 .0
43+ #define SQLITECPP_VERSION "3.01 .00" // 3.1 .0
44+ #define SQLITECPP_VERSION_NUMBER 3001001 // 3.1 .0
You can’t perform that action at this time.
0 commit comments