diff --git a/CHANGELOG.md b/CHANGELOG.md index c993aa1b..4c783724 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -141,8 +141,9 @@ Version 2.4.0 - August 25 2019 - #215 Disable implicit fallthrough warning when building internal sqlite3 - #216 Set PROJECT_VERSION to fix CMP0048 Policy warnings -Upcoming Version 2.5.0 - December 2019 +Version 2.5.0 - December 31 2019 - Update SQLite3 from 3.29.0 to 3.30.1 (2019-10-10) +- 100% Unit Test coverage - #212 fix sqlite3 compile properties (jzt) - #219 Disable cast-function-type warning when building internal sqlite (zxey) - #230 Fixed installation on other than Ubuntu GNU/Linux distributions (xvitaly) @@ -151,3 +152,4 @@ Upcoming Version 2.5.0 - December 2019 - #231 Added SOVERSION field for shared library (xvitaly) - #229 Explicitly find and link against system sqlite library (xvitaly) - #235 Added support for cmake dependencies and version information (BioDataAnalysis/emmenlau) +- #249 Added SQLite header parsing functionality and associated tests (patrick--) diff --git a/CMakeLists.txt b/CMakeLists.txt index 73635e7c..f7e0fbd5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,12 +8,12 @@ cmake_minimum_required(VERSION 2.8.12) # first version with add_compile_options( if (CMAKE_VERSION VERSION_LESS 3.0) project(SQLiteCpp) set(PROJECT_VERSION_MAJOR 2) - set(PROJECT_VERSION_MINOR 4) + set(PROJECT_VERSION_MINOR 5) set(PROJECT_VERSION_PATCH 0) - set(PROJECT_VERSION "2.4.0") + set(PROJECT_VERSION "2.5.0") else() cmake_policy(SET CMP0048 NEW) - project(SQLiteCpp VERSION "2.4.0") + project(SQLiteCpp VERSION "2.5.0") endif() message (STATUS "CMake version: ${CMAKE_VERSION}") diff --git a/Doxyfile b/Doxyfile index cd6f5162..60bfb973 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = SQLiteC++ # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 2.3.0 +PROJECT_NUMBER = 2.5.0 # 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 diff --git a/include/SQLiteCpp/SQLiteCpp.h b/include/SQLiteCpp/SQLiteCpp.h index ea27e47f..85733852 100644 --- a/include/SQLiteCpp/SQLiteCpp.h +++ b/include/SQLiteCpp/SQLiteCpp.h @@ -40,5 +40,5 @@ * * WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt */ -#define SQLITECPP_VERSION "2.04.00" // 2.4.0 -#define SQLITECPP_VERSION_NUMBER 2004000 // 2.4.0 +#define SQLITECPP_VERSION "2.05.00" // 2.5.0 +#define SQLITECPP_VERSION_NUMBER 2005000 // 2.5.0