Skip to content

Commit 1c42d6a

Browse files
committed
bumped version
1 parent f9c7acd commit 1c42d6a

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGES

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

4+
0.42.0
5+
------
6+
You can now use ``all_columns`` at the root. For example:
7+
8+
.. code-block:: python
9+
10+
await Band.select(
11+
Band.all_columns(),
12+
Band.manager.all_columns()
13+
).run()
14+
15+
You can also exclude certain columns if you like:
16+
17+
.. code-block:: python
18+
19+
await Band.select(
20+
Band.all_columns(exclude=[Band.id]),
21+
Band.manager.all_columns(exclude=[Band.manager.id])
22+
).run()
23+
424
0.41.1
525
------
626
Fix a regression where if multiple tables are created in a single migration

piccolo/__init__.py

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

0 commit comments

Comments
 (0)