From 8f28c4c58f4d73c5a51cbe17f0f447d7d5a051a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Sun, 1 Nov 2015 21:53:26 +0100 Subject: [PATCH] Update version to 1.3.0 with new Backup class --- CHANGELOG.txt | 18 +++++++++++++++--- README.md | 2 +- include/SQLiteCpp/SQLiteCpp.h | 4 ++-- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index e62d082..ff7028b 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -58,6 +58,18 @@ Version 1.0.0 - May 3 2015 Added Statement::getColumnName(aIndex) Added Statement::getColumnOriginName(aIndex) -Version 1.1.0 - May 2015 ? - Fix valgrind error on Database destructor - Added Database::loadExtension \ No newline at end of file +Version 1.1.0 - May 18 2015 + Fixed valgrind error on Database destructor + Added Database::loadExtension + +Version 1.2.0 - September 9 2015 + Fixed build with GCC 5.1.0 + Fixed MSVC release build warning + Fixed CppDepends warnings + Updated documentation on installation + Added Database::getHandle() + +Version 1.3.0 - November 1 2015 + Fixed build with Visual Studio 2015 + Further improvements to README + Added Backup class \ No newline at end of file diff --git a/README.md b/README.md index 8f72714..179d241 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Developements and tests are done under the following OSs: And following IDEs/Compilers - GCC 4.7.2 and GCC 4.8.2 - Eclipse CDT under Linux -- Visual Studio Express 2008/2010/2012/2013/2015 for testing compatibility purpose +- Visual Studio Express 2008/2013/2015 for testing compatibility purpose ### Dependencies diff --git a/include/SQLiteCpp/SQLiteCpp.h b/include/SQLiteCpp/SQLiteCpp.h index 22b00b6..5beda31 100644 --- a/include/SQLiteCpp/SQLiteCpp.h +++ b/include/SQLiteCpp/SQLiteCpp.h @@ -38,5 +38,5 @@ * with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same * numbers used in [SQLITECPP_VERSION]. */ -#define SQLITECPP_VERSION "1.2.0" -#define SQLITECPP_VERSION_NUMBER 1002000 +#define SQLITECPP_VERSION "1.3.0" +#define SQLITECPP_VERSION_NUMBER 1003000