File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -141,8 +141,9 @@ Version 2.4.0 - August 25 2019
141
141
- #215 Disable implicit fallthrough warning when building internal sqlite3
142
142
- #216 Set PROJECT_VERSION to fix CMP0048 Policy warnings
143
143
144
- Upcoming Version 2.5.0 - December 2019
144
+ Version 2.5.0 - December 31 2019
145
145
- Update SQLite3 from 3.29.0 to 3.30.1 (2019-10-10)
146
+ - 100% Unit Test coverage
146
147
- #212 fix sqlite3 compile properties (jzt)
147
148
- #219 Disable cast-function-type warning when building internal sqlite (zxey)
148
149
- #230 Fixed installation on other than Ubuntu GNU/Linux distributions (xvitaly)
@@ -151,3 +152,4 @@ Upcoming Version 2.5.0 - December 2019
151
152
- #231 Added SOVERSION field for shared library (xvitaly)
152
153
- #229 Explicitly find and link against system sqlite library (xvitaly)
153
154
- #235 Added support for cmake dependencies and version information (BioDataAnalysis/emmenlau)
155
+ - #249 Added SQLite header parsing functionality and associated tests (patrick--)
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ cmake_minimum_required(VERSION 2.8.12) # first version with add_compile_options(
8
8
if (CMAKE_VERSION VERSION_LESS 3.0 )
9
9
project (SQLiteCpp )
10
10
set (PROJECT_VERSION_MAJOR 2 )
11
- set (PROJECT_VERSION_MINOR 4 )
11
+ set (PROJECT_VERSION_MINOR 5 )
12
12
set (PROJECT_VERSION_PATCH 0 )
13
- set (PROJECT_VERSION "2.4 .0" )
13
+ set (PROJECT_VERSION "2.5 .0" )
14
14
else ()
15
15
cmake_policy (SET CMP0048 NEW )
16
- project (SQLiteCpp VERSION "2.4 .0" )
16
+ project (SQLiteCpp VERSION "2.5 .0" )
17
17
endif ()
18
18
19
19
message (STATUS "CMake version: ${CMAKE_VERSION} " )
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ PROJECT_NAME = SQLiteC++
38
38
# could be handy for archiving the generated documentation or if some version
39
39
# control system is used.
40
40
41
- PROJECT_NUMBER = 2.3 .0
41
+ PROJECT_NUMBER = 2.5 .0
42
42
43
43
# Using the PROJECT_BRIEF tag one can provide an optional one line description
44
44
# 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 40
40
*
41
41
* WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt
42
42
*/
43
- #define SQLITECPP_VERSION "2.04 .00" // 2.4 .0
44
- #define SQLITECPP_VERSION_NUMBER 2004000 // 2.4 .0
43
+ #define SQLITECPP_VERSION "2.05 .00" // 2.5 .0
44
+ #define SQLITECPP_VERSION_NUMBER 2005000 // 2.5 .0
You can’t perform that action at this time.
0 commit comments