diff --git a/README.md b/README.md index 52353860..170667ff 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Got CSV data? Use [csvs-to-sqlite](https://github.com/simonw/csvs-to-sqlite) to ## News +* 23rd July 2018: [Datasette 0.24](http://datasette.readthedocs.io/en/latest/changelog.html#v0-24) - a number of small new features * 29th June 2018: [datasette-vega](https://github.com/simonw/datasette-vega), a new plugin for visualizing data as bar, line or scatter charts * 21st June 2018: [Datasette 0.23.1](http://datasette.readthedocs.io/en/latest/changelog.html#v0-23-1) - minor bug fixes * 18th June 2018: [Datasette 0.23: CSV, SpatiaLite and more](http://datasette.readthedocs.io/en/latest/changelog.html#v0-23) - CSV export, foreign key expansion in JSON and CSV, new config options, improved support for SpatiaLite and a bunch of other improvements diff --git a/docs/changelog.rst b/docs/changelog.rst index 2700af74..4071c9e2 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,24 @@ Changelog ========= +.. _v0_24: + +0.24 (2018-07-23) +------------------- + +A number of small new features: + +- ``datasette publish heroku`` now supports ``--extra-options``, fixes `#334 `_ +- Custom error message if SpatiaLite is needed for specified database, closes `#331 `_ +- New config option: ``truncate_cells_html`` for :ref:`truncating long cell values ` in HTML view - closes `#330 `_ +- Documentation for :ref:`datasette publish and datasette package `, closes `#337 `_ +- Fixed compatibility with Python 3.7 +- ``datasette publish heroku`` now supports app names via the ``-n`` option, which can also be used to overwrite an existing application [Russ Garrett] +- Title and description metadata can now be set for :ref:`canned SQL queries `, closes `#342 `_ +- New ``force_https_on`` config option, fixes ``https://`` API URLs when deploying to Zeit Now - closes `#333 `_ +- ``?_json_infinity=1`` querystring argument for handling Infinity/-Infinity values in JSON, closes `#332 `_ +- URLs displayed in the results of custom SQL queries are now URLified, closes `#298 `_ + .. _v0_23_2: 0.23.2 (2018-07-07) diff --git a/docs/sql_queries.rst b/docs/sql_queries.rst index 4b5761e4..7f31af72 100644 --- a/docs/sql_queries.rst +++ b/docs/sql_queries.rst @@ -63,6 +63,8 @@ The easiest way to create views is with the SQLite command-line interface:: sqlite> CREATE VIEW demo_view AS select qSpecies from Street_Tree_List; +.. _canned_queries: + Canned queries --------------