Skip to content

Commit ee017cd

Browse files
committed
Release notes for 1.0, closes #22
1 parent 251e473 commit ee017cd

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

docs/changelog.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
Changelog
33
===========
44

5+
.. _v1_0:
6+
7+
1.0 (2019-05-24)
8+
----------------
9+
10+
- Option to automatically add new columns if you attempt to insert or upsert data with extra fields:
11+
``sqlite-utils insert ... --alter`` - see :ref:`Adding columns automatically with the sqlite-utils CLI <cli_add_column_alter>`
12+
13+
``db["tablename"].insert(record, alter=True)`` - see :ref:`Adding columns automatically using the Python API <python_api_add_column_alter>`
14+
- New ``--json-cols`` option for outputting nested JSON, see :ref:`cli_json_values`
15+
516
.. _v0_14:
617

718
0.14 (2019-02-24)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import io
33
import os
44

5-
VERSION = "0.14"
5+
VERSION = "1.0"
66

77

88
def get_long_description():

0 commit comments

Comments
 (0)