Skip to content

Commit fd7958b

Browse files
committed
Release 2.5.0
1 parent b5c0a08 commit fd7958b

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,9 @@ Version 2.4.0 - August 25 2019
141141
- #215 Disable implicit fallthrough warning when building internal sqlite3
142142
- #216 Set PROJECT_VERSION to fix CMP0048 Policy warnings
143143

144-
Upcoming Version 2.5.0 - December 2019
144+
Version 2.5.0 - December 31 2019
145145
- Update SQLite3 from 3.29.0 to 3.30.1 (2019-10-10)
146+
- 100% Unit Test coverage
146147
- #212 fix sqlite3 compile properties (jzt)
147148
- #219 Disable cast-function-type warning when building internal sqlite (zxey)
148149
- #230 Fixed installation on other than Ubuntu GNU/Linux distributions (xvitaly)
@@ -151,3 +152,4 @@ Upcoming Version 2.5.0 - December 2019
151152
- #231 Added SOVERSION field for shared library (xvitaly)
152153
- #229 Explicitly find and link against system sqlite library (xvitaly)
153154
- #235 Added support for cmake dependencies and version information (BioDataAnalysis/emmenlau)
155+
- #249 Added SQLite header parsing functionality and associated tests (patrick--)

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ cmake_minimum_required(VERSION 2.8.12) # first version with add_compile_options(
88
if (CMAKE_VERSION VERSION_LESS 3.0)
99
project(SQLiteCpp)
1010
set(PROJECT_VERSION_MAJOR 2)
11-
set(PROJECT_VERSION_MINOR 4)
11+
set(PROJECT_VERSION_MINOR 5)
1212
set(PROJECT_VERSION_PATCH 0)
13-
set(PROJECT_VERSION "2.4.0")
13+
set(PROJECT_VERSION "2.5.0")
1414
else()
1515
cmake_policy(SET CMP0048 NEW)
16-
project(SQLiteCpp VERSION "2.4.0")
16+
project(SQLiteCpp VERSION "2.5.0")
1717
endif()
1818

1919
message (STATUS "CMake version: ${CMAKE_VERSION}")

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 = 2.3.0
41+
PROJECT_NUMBER = 2.5.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

include/SQLiteCpp/SQLiteCpp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@
4040
*
4141
* WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt
4242
*/
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

0 commit comments

Comments
 (0)