From 74586d3cb26fa3cc3412721985ecdc1864c2a31d Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 11 Jan 2022 15:44:48 -0800 Subject: [PATCH] Release 3.22 Refs #381, #382, #383 --- docs/changelog.rst | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 615dc7cea..0af3c0418 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,15 @@ Changelog =========== +.. _v3_22: + +3.22 (2022-01-11) +----------------- + +- New :ref:`cli_reference` documentation page, listing the output of ``--help`` for every one of the CLI commands. (:issue:`383`) +- ``sqlite-utils rows`` now has ``--limit`` and ``--offset`` options for paginating through data. (:issue:`381`) +- ``sqlite-utils rows`` now has ``--where`` and ``-p`` options for filtering the table using a ``WHERE`` query, see :ref:`cli_rows`. (:issue:`382`) + .. _v3_21: 3.21 (2022-01-10) diff --git a/setup.py b/setup.py index 4c514e07f..e0aa54b52 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import io import os -VERSION = "3.21" +VERSION = "3.22" def get_long_description():