Skip to content

Commit 133e76d

Browse files
committed
bumped version
1 parent b6d6fe6 commit 133e76d

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGES

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Changes
22
=======
33

4+
0.40.0
5+
------
6+
Added ``nested`` output option, which makes the response from a ``select``
7+
query use nested dictionaries:
8+
9+
.. code-block:: python
10+
11+
>>> await Band.select(Band.name, *Band.manager.all_columns()).output(nested=True).run()
12+
[{'name': 'Pythonistas', 'manager': {'id': 1, 'name': 'Guido'}}]
13+
14+
Thanks to @wmshort for the idea.
15+
416
0.39.0
517
------
618
Added ``to_dict`` method to ``Table``.

piccolo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__VERSION__ = "0.39.0"
1+
__VERSION__ = "0.40.0"

0 commit comments

Comments
 (0)