From b6539ff04502536bd1fa96e3b1430bdafc456826 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 13 Apr 2018 11:28:55 -0700 Subject: [PATCH] Releasing v0.16 --- datasette/version.py | 2 +- docs/changelog.rst | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/datasette/version.py b/datasette/version.py index da6f9aa3..a9296bcd 100644 --- a/datasette/version.py +++ b/datasette/version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 15) +__version_info__ = (0, 16) __version__ = '.'.join(map(str, __version_info__)) diff --git a/docs/changelog.rst b/docs/changelog.rst index a98ef9f8..36df0120 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,24 @@ Changelog ========= +0.16 (2018-04-13) +----------------- +- Better mechanism for handling errors; 404s for missing table/database + + New error mechanism closes `#193 `_ + + 404s for missing tables/databases closes `#184 `_ + +- long_description in markdown for the new PyPI +- Hide Spatialite system tables. [Russ Garrett] +- Allow ``explain select`` / ``explain query plan select`` `#201 `_ +- Datasette inspect now finds primary_keys `#195 `_ +- Ability to sort using form fields (for mobile portrait mode) `#199 `_ + + We now display sort options as a select box plus a descending checkbox, which + means you can apply sort orders even in portrait mode on a mobile phone where + the column headers are hidden. + 0.15 (2018-04-09) -----------------