Update version to 1.3.0 with new Backup class

This commit is contained in:
Sébastien Rombauts 2015-11-01 21:53:26 +01:00
parent 544ecf4101
commit 8f28c4c58f
3 changed files with 18 additions and 6 deletions

View File

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

View File

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

View File

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