Skip to content

Commit 1ffa403

Browse files
committed
Releasing 0.12
1 parent e3c0ed1 commit 1ffa403

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

docs/changelog.rst

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

5+
.. _v0_12:
6+
7+
0.12 (2019-02-22)
8+
-----------------
9+
10+
- Added ``db[table].rows`` iterator - see :ref:`python_api_rows`
11+
- Replaced ``sqlite-utils json`` and ``sqlite-utils csv`` with a new default subcommand called ``sqlite-utils query`` which defaults to JSON and takes formatting options ``--nl``, ``--csv`` and ``--no-headers`` - see :ref:`cli_query_json` and :ref:`cli_query_csv`
12+
- New ``sqlite-utils rows data.db name-of-table`` command, see :ref:`cli_rows`
13+
- ``sqlite-utils table`` command now takes options ``--counts`` and ``--columns`` plus the standard output format options, see :ref:`cli_tables`
14+
515
.. _v0_11:
616

717
0.11 (2019-02-07)

docs/cli.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ You can return every row in a specified table using the ``rows`` subcommand::
8686

8787
This command accepts the same output options as ``query`` - so you can pass ``--nl``, ``--csv`` and ``--no-headers``.
8888

89+
.. _cli_tables:
90+
8991
Listing tables
9092
==============
9193

docs/python-api.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ You can also iterate through the table objects themselves using the ``.tables``
5252
>>> db.tables
5353
[<Table dogs>]
5454

55+
.. _python_api_rows:
56+
5557
Listing rows
5658
============
5759

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 = "0.11"
5+
VERSION = "0.12"
66

77

88
def get_long_description():

0 commit comments

Comments
 (0)