Skip to content

Commit 2210b30

Browse files
committed
Update sqlite3 from v3.9.2 to 3.10.2 (2016-01-20) and update version to 1.3.1
1 parent c53d885 commit 2210b30

File tree

6 files changed

+5074
-3088
lines changed

6 files changed

+5074
-3088
lines changed

CHANGELOG.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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+
6161
Version 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+

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ or copy at http://opensource.org/licenses/MIT)
2929

3030
SQLite is a library that implements a serverless transactional SQL database engine.
3131
It 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.
3333
http://www.sqlite.org/about.html
3434

3535
### The goals of SQLiteC++ are:

include/SQLiteCpp/SQLiteCpp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@
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

sqlite3/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
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

36
Those files are provided for easy setup and compatibility under Windows/Linux/MacOS.
47
They are used by default by the CMake build.
58

69
Use -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+

0 commit comments

Comments
 (0)