mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-24 18:04:32 +02:00
Release notes for 1.0, closes #22
This commit is contained in:
parent
251e473041
commit
ee017cdbdd
2 changed files with 12 additions and 1 deletions
|
|
@ -2,6 +2,17 @@
|
||||||
Changelog
|
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:
|
.. _v0_14:
|
||||||
|
|
||||||
0.14 (2019-02-24)
|
0.14 (2019-02-24)
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
||||||
import io
|
import io
|
||||||
import os
|
import os
|
||||||
|
|
||||||
VERSION = "0.14"
|
VERSION = "1.0"
|
||||||
|
|
||||||
|
|
||||||
def get_long_description():
|
def get_long_description():
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue