Skip to content

Commit

Permalink
Release 2.10
Browse files Browse the repository at this point in the history
Refs #115
  • Loading branch information
simonw committed Jun 12, 2020
1 parent 03ee97d commit 4d9a320
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/cli.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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}]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import io
import os

VERSION = "2.9.1"
VERSION = "2.10"


def get_long_description():
Expand Down

0 comments on commit 4d9a320

Please sign in to comment.