File tree Expand file tree Collapse file tree 6 files changed +5074
-3088
lines changed Expand file tree Collapse file tree 6 files changed +5074
-3088
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ Version 1.0.0 - May 3 2015
5757 Added Statement::getErrorCode()
5858 Added Statement::getColumnName(aIndex)
5959 Added Statement::getColumnOriginName(aIndex)
60-
60+
6161Version 1.1.0 - May 18 2015
6262 Fixed valgrind error on Database destructor
6363 Added Database::loadExtension
@@ -74,8 +74,9 @@ Version 1.3.0 - November 1 2015
7474 Further improvements to README
7575 Added Backup class
7676
77- Version 1.3.1 - ? 2016
77+ Version 1.3.1 - February 10 2016
7878 Swith Linux/Mac build to the provided SQLite3 C library
79- Update SQLite3 from 3.8.8.3 to latest 3.9 .2 (2015-11-02 )
79+ Update SQLite3 from 3.8.8.3 to latest 3.10 .2 (2016-01-20 )
8080 Remove warnings
8181 Remove biicode support (defunct service, servers will shutdown the 16th of February 2016)
82+
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ or copy at http://opensource.org/licenses/MIT)
2929
3030SQLite is a library that implements a serverless transactional SQL database engine.
3131It is the most widely deployed SQL database engine in the world.
32- The source code for SQLite is in the public domain.
32+ All of the code and documentation in SQLite has been dedicated to the public domain by the authors .
3333http://www.sqlite.org/about.html
3434
3535### The goals of SQLiteC++ are:
Original file line number Diff line number Diff line change 3838 * with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same
3939 * numbers used in [SQLITECPP_VERSION].
4040 */
41- #define SQLITECPP_VERSION "1.3.0 "
42- #define SQLITECPP_VERSION_NUMBER 1003000
41+ #define SQLITECPP_VERSION "1.3.1 "
42+ #define SQLITECPP_VERSION_NUMBER 1003001
Original file line number Diff line number Diff line change 1- "sqlite3.c" and "sqlite3.h" files from sqlite-amalgamation-3090200.zip (SQLite 3.9.2 2015-11-02)
1+ sqlite3
2+ -------
3+
4+ "sqlite3.c" and "sqlite3.h" files from sqlite-amalgamation-3090200.zip (SQLite 3.10.2 2016-01-20)
25
36Those files are provided for easy setup and compatibility under Windows/Linux/MacOS.
47They are used by default by the CMake build.
58
69Use -DSQLITECPP_INTERNAL_SQLITE=OFF to link against the Linux "libsqlite3-dev" package instead.
10+
11+ ### License:
12+
13+ All of the code and documentation in SQLite has been dedicated to the public domain by the authors.
14+
You can’t perform that action at this time.
0 commit comments