Skip to content

Commit 9bddedb

Browse files
committed
bumped version
1 parent e8803f7 commit 9bddedb

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGES

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,27 @@
11
Changes
22
=======
33

4-
0.35.0
4+
0.36.0
55
------
6+
Fixed an issue where ``like`` and ``ilike`` clauses required a wildcard. For
7+
example:
8+
9+
.. code-block:: python
610

11+
await Manager.select().where(Manager.name.ilike('Guido%')).run()
12+
13+
You can now omit wildcards if you like:
14+
15+
.. code-block:: python
16+
17+
await Manager.select().where(Manager.name.ilike('Guido')).run()
18+
19+
Which would match on ``'guido'`` and ``'Guido'``, but not ``'Guidoxyz'``.
20+
21+
Thanks to @wmshort for reporting this issue.
22+
23+
0.35.0
24+
------
725
* Improved ``PrimaryKey`` deprecation warning (courtesy @tonybaloney).
826
* Added ``piccolo schema generate`` which creates a Piccolo schema from an
927
existing database.

piccolo/__init__.py

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

0 commit comments

Comments
 (0)