Skip to content

Commit 4d9a320

Browse files
committed
Release 2.10
Refs #115
1 parent 03ee97d commit 4d9a320

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

docs/changelog.rst

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

5+
.. _v2_10:
6+
7+
2.10 (2020-06-12)
8+
-----------------
9+
10+
- The ``sqlite-utils`` command now supports UPDATE/INSERT/DELETE in addition to SELECT. (`#115 <https://github.com/simonw/sqlite-utils/issues/115>`__)
11+
512
.. _v2_9_1:
613

714
2.9.1 (2020-05-11)

docs/cli.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ If you want to pretty-print the output further, you can pipe it through ``python
5555
}
5656
]
5757

58-
If you execute an `UPDATE` or `INSERT` query the comand will return the number of affected rows::
58+
If you execute an ``UPDATE``, ``INSERT`` or ``DELETE`` query the comand will return the number of affected rows::
5959

6060
$ sqlite-utils dogs.db "update dogs set age = 5 where name = 'Cleo'"
6161
[{"rows_affected": 1}]

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 = "2.9.1"
5+
VERSION = "2.10"
66

77

88
def get_long_description():

0 commit comments

Comments
 (0)