We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b6300c commit 17832f8Copy full SHA for 17832f8
CHANGES
@@ -1,6 +1,20 @@
1
Changes
2
=======
3
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
18
0.30.0
19
------
20
The database drivers are now installed separately. For example:
piccolo/__init__.py
@@ -1 +1 @@
-__VERSION__ = "0.30.0"
+__VERSION__ = "0.31.0"
0 commit comments