Release 2.5.0

This commit is contained in:
Sébastien Rombauts 2019-12-31 21:32:26 +01:00
parent b5c0a08d3d
commit fd7958b809
4 changed files with 9 additions and 7 deletions

View File

@ -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--)

View File

@ -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}")

View File

@ -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

View File

@ -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