Skip to content

Commit 5aea0fd

Browse files
committed
bumped version
1 parent 7a6746d commit 5aea0fd

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

CHANGES.rst

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

4+
0.69.3
5+
------
6+
7+
The ``where`` clause now raises a ``ValueError`` if a boolean value is
8+
passed in by accident. This was possible in the following situation:
9+
10+
.. code-block:: python
11+
12+
await Band.select().where(Band.has_drummer is None)
13+
14+
Piccolo can't override the ``is`` operator because Python doesn't allow it,
15+
so ``Band.has_drummer is None`` will always equal ``False``. Thanks to
16+
@trondhindenes for reporting this issue.
17+
18+
We've also put a lot of effort into improving documentation throughout the
19+
project.
20+
21+
-------------------------------------------------------------------------------
22+
423
0.69.2
524
------
625

piccolo/__init__.py

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

0 commit comments

Comments
 (0)