Skip to content

Commit 17832f8

Browse files
committed
bumped version
1 parent 9b6300c commit 17832f8

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGES

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

4+
0.31.0
5+
------
6+
Added an ``all_columns`` method, to make it easier to retrieve all related
7+
columns when doing a join. For example:
8+
9+
.. code-block:: python
10+
11+
await Band.select(Band.name, *Band.manager.all_columns()).first().run()
12+
13+
Changed the instructions for installing additional dependencies, so they're
14+
wrapped in quotes, to make sure it works on ZSH (i.e.
15+
``pip install 'piccolo[postgres]'`` instead of
16+
``pip install piccolo[postgres]``).
17+
418
0.30.0
519
------
620
The database drivers are now installed separately. For example:

piccolo/__init__.py

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

0 commit comments

Comments
 (0)