Skip to content

Commit

Permalink
bumped version (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Feb 9, 2023
1 parent d443647 commit 1152bc6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
Changes
=======

0.51.0
------

You can now get all rows with a null / not-null value in ``PiccoloCRUD``.

For example, if we have a nullable column called ``score``:

.. code-block::
GET /?score__operator=is_null
Likewise, to get all rows whose score is not null:

.. code-block::
GET /?score__operator=not_null
-------------------------------------------------------------------------------

0.50.0
------

Expand Down
2 changes: 1 addition & 1 deletion piccolo_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VERSION__ = "0.50.0"
__VERSION__ = "0.51.0"

0 comments on commit 1152bc6

Please sign in to comment.