Release notes for 1.0, closes #22

This commit is contained in:
Simon Willison 2019-05-24 18:06:38 -07:00
commit ee017cdbdd
2 changed files with 12 additions and 1 deletions

View file

@ -2,6 +2,17 @@
Changelog
===========
.. _v1_0:
1.0 (2019-05-24)
----------------
- Option to automatically add new columns if you attempt to insert or upsert data with extra fields:
``sqlite-utils insert ... --alter`` - see :ref:`Adding columns automatically with the sqlite-utils CLI <cli_add_column_alter>`
``db["tablename"].insert(record, alter=True)`` - see :ref:`Adding columns automatically using the Python API <python_api_add_column_alter>`
- New ``--json-cols`` option for outputting nested JSON, see :ref:`cli_json_values`
.. _v0_14:
0.14 (2019-02-24)