Skip to content

Commit 806c210

Browse files
committed
Release 3.6
Refs #113, #236
1 parent 2ba5588 commit 806c210

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
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+
.. _v3_6:
6+
7+
3.6 (2021-02-18)
8+
----------------
9+
10+
This release adds the ability to execute queries joining data from more than one database file - similar to the cross database querying feature introduced in `Datasette 0.55 <https://docs.datasette.io/en/stable/changelog.html#v0-55>`__.
11+
12+
- The ``db.attach(alias, filepath)`` Python method can be used to attach extra databases to the same connection, see :ref:`db.attach() in the Python API documentation <python_api_attach>`. (`#113 <https://github.com/simonw/sqlite-utils/issues/113>`__)
13+
- The ``--attach`` option attaches extra aliased databases to run SQL queries against directly on the command-line, see :ref:`attaching additional databases in the CLI documentation <cli_attach>`. (`#236 <https://github.com/simonw/sqlite-utils/issues/236>`__)
14+
515
.. _v3_5:
616

717
3.5 (2021-02-14)

docs/cli.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ You can use the ``--json-cols`` option to automatically detect these JSON column
124124
}
125125
]
126126

127-
.. cli_attach:
127+
.. _cli_attach:
128128

129129
Attaching additional databases
130130
------------------------------

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 = "3.5"
5+
VERSION = "3.6"
66

77

88
def get_long_description():

0 commit comments

Comments
 (0)