Release 2.10

Refs #115
This commit is contained in:
Simon Willison 2020-06-12 10:43:45 -07:00
commit 4d9a320436
3 changed files with 9 additions and 2 deletions

View file

@ -2,6 +2,13 @@
Changelog
===========
.. _v2_10:
2.10 (2020-06-12)
-----------------
- The ``sqlite-utils`` command now supports UPDATE/INSERT/DELETE in addition to SELECT. (`#115 <https://github.com/simonw/sqlite-utils/issues/115>`__)
.. _v2_9_1:
2.9.1 (2020-05-11)

View file

@ -55,7 +55,7 @@ If you want to pretty-print the output further, you can pipe it through ``python
}
]
If you execute an `UPDATE` or `INSERT` query the comand will return the number of affected rows::
If you execute an ``UPDATE``, ``INSERT`` or ``DELETE`` query the comand will return the number of affected rows::
$ sqlite-utils dogs.db "update dogs set age = 5 where name = 'Cleo'"
[{"rows_affected": 1}]

View file

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
import io
import os
VERSION = "2.9.1"
VERSION = "2.10"
def get_long_description():