diff --git a/docs/changelog.rst b/docs/changelog.rst index ac2c843..8ffc47d 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 464712c..a0bd94a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "0.14" +VERSION = "1.0" def get_long_description():