diff --git a/Makefile b/Makefile index d37dd77c..4aa04ce1 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -SQLITEVERSION=3.13.0 +SQLITEVERSION=3.14.1 APSWSUFFIX=-r1 RELEASEDATE="28 April 2016" diff --git a/checksums b/checksums index 22fd4958..28ca2e59 100644 --- a/checksums +++ b/checksums @@ -199,3 +199,8 @@ https://sqlite.org/2016/sqlite-autoconf-3120200.tar.gz 2374804 b43c2e7238e54c50b https://sqlite.org/2016/sqlite-amalgamation-3130000.zip 1966584 b46e199f06aa6f644989076da40227da68db7b6a 34dafb6b91558d5e803032bd9a33b664 https://sqlite.org/2016/sqlite-autoconf-3130000.tar.gz 2459805 f6f76e310389e3f510b23826f805850449ae8653 4e83f39fa2ffb610ac5ecd36865da6a2 + +https://sqlite.org/2016/sqlite-amalgamation-3140000.zip 1978311 27a518342e0609455cfe39b4188f6107914ca9cd 6d149d8fc565475954c1241d03f23931 +https://sqlite.org/2016/sqlite-autoconf-3140000.tar.gz 2473333 f0ed10b416c467062c76b899f08c773c713fb8fd 1813c764b0ee422adcd1978ea73a3445 +https://sqlite.org/2016/sqlite-amalgamation-3140100.zip 1978388 ea8c25abc33733ec3541be2affe41b804b08c5ca 18f3bd8b0425d3f63d421896841dc8d5 +https://sqlite.org/2016/sqlite-autoconf-3140100.tar.gz 2473610 774a05b8e7c9318111228bd5ad6bf65272f3fe38 3634a90a3f49541462bcaed3474b2684 diff --git a/doc/download.rst b/doc/download.rst index 0e63d60d..222c407b 100644 --- a/doc/download.rst +++ b/doc/download.rst @@ -18,56 +18,56 @@ way to build or all the :ref:`options available `. .. downloads-begin -* `apsw-3.13.0-r1.zip - `__ +* `apsw-3.14.1-r1.zip + `__ (Source, includes this HTML Help) * Windows Python 2.3 `32bit - `__ + `__ * Windows Python 2.4 `32bit - `__ + `__ * Windows Python 2.5 `32bit - `__ + `__ * Windows Python 2.6 `32bit - `__ + `__ `64bit - `__ + `__ * Windows Python 2.7 `32bit - `__ + `__ `64bit - `__ + `__ * Windows Python 3.1 `32bit - `__ + `__ `64bit - `__ + `__ * Windows Python 3.2 `32bit - `__ + `__ `64bit - `__ + `__ * Windows Python 3.3 `32bit - `__ + `__ `64bit - `__ + `__ * Windows Python 3.4 `32bit - `__ + `__ `64bit - `__ + `__ * Windows Python 3.5 `32bit - `__ + `__ `64bit - `__ + `__ -* `apsw-3.13.0-r1-sigs.zip - `__ +* `apsw-3.14.1-r1-sigs.zip + `__ GPG signatures for all files .. downloads-end @@ -110,7 +110,7 @@ Verify To verify a file just use --verify specifying the corresponding ``.asc`` filename. This example verifies the source:: - $ gpg --verify apsw-3.13.0-r1.zip.asc + $ gpg --verify apsw-3.14.1-r1.zip.asc gpg: Signature made ... date ... using DSA key ID 0DFBD904 gpg: Good signature from "Roger Binns " @@ -159,21 +159,19 @@ so some solution may come out of that. I'm happy to work with anyone who has a solution to this problem. .. _really_want_pip: + I really want to use pip ------------------------ The following pip command line downloads APSW from github, SQLite from the official site, and builds/installs with all extensions enabled. - - - .. pip-begin Use this (all one command):: - pip install --user https://github.com/rogerbinns/apsw/releases/download/3.13.0-r1/apsw-3.13.0-r1.zip \ - --global-option=fetch --global-option=--version --global-option=3.13.0 --global-option=--all \ + pip install --user https://github.com/rogerbinns/apsw/releases/download/3.14.1-r1/apsw-3.14.1-r1.zip \ + --global-option=fetch --global-option=--version --global-option=3.14.1 --global-option=--all \ --global-option=build --global-option=--enable-all-extensions .. pip-end \ No newline at end of file diff --git a/src/apsw.c b/src/apsw.c index 354bcf54..706da64e 100644 --- a/src/apsw.c +++ b/src/apsw.c @@ -59,8 +59,8 @@ API Reference #include "sqlite3.h" #endif -#if SQLITE_VERSION_NUMBER < 3013000 -#error Your SQLite version is too old. It must be at least 3.13 +#if SQLITE_VERSION_NUMBER < 3014000 +#error Your SQLite version is too old. It must be at least 3.14 #endif /* system headers */ diff --git a/src/apswversion.h b/src/apswversion.h index 1210b522..a49b09ae 100644 --- a/src/apswversion.h +++ b/src/apswversion.h @@ -1 +1 @@ -#define APSW_VERSION "3.13.0-r1" +#define APSW_VERSION "3.14.1-r1" diff --git a/tools/checksums.py b/tools/checksums.py index eb82391d..401eadea 100755 --- a/tools/checksums.py +++ b/tools/checksums.py @@ -7,6 +7,8 @@ import re sqlitevers=( + '3140100', + '3140000', '3130000', '3120200', '3120100',