diff --git a/docs/changelog.rst b/docs/changelog.rst index 46cc1b6a1..31b8dc063 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 `__) + .. _v2_9_1: 2.9.1 (2020-05-11) diff --git a/docs/cli.rst b/docs/cli.rst index f75f370e4..af48a3e20 100644 --- a/docs/cli.rst +++ b/docs/cli.rst @@ -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}] diff --git a/setup.py b/setup.py index 6d27b1323..0e1cb236b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import io import os -VERSION = "2.9.1" +VERSION = "2.10" def get_long_description():