Release 3.22

Refs #381, #382, #383
This commit is contained in:
Simon Willison 2022-01-11 15:44:48 -08:00
commit 74586d3cb2
2 changed files with 10 additions and 1 deletions

View file

@ -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)

View file

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