From ee017cdbddfb7cdbf522149d195dd41416b24ecd Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 24 May 2019 18:06:38 -0700 Subject: [PATCH] Release notes for 1.0, closes #22 --- docs/changelog.rst | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index ac2c84307..8ffc47d34 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 ` + + ``db["tablename"].insert(record, alter=True)`` - see :ref:`Adding columns automatically using the Python API ` +- New ``--json-cols`` option for outputting nested JSON, see :ref:`cli_json_values` + .. _v0_14: 0.14 (2019-02-24) diff --git a/setup.py b/setup.py index 464712c2d..a0bd94ab8 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import io import os -VERSION = "0.14" +VERSION = "1.0" def get_long_description():