Skip to content

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Mar 17, 2023
1 parent c011fd4 commit 624dda7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
Changes
=======

0.52.0
------

``PiccoloCRUD`` now lets you specify multiple columns in the ``__order`` GET
param.

For example, with this schema:

.. code-block:: python
class Movie(Table):
name = Varchar()
rating = Integer()
To order the results by descending ``rating`` and ascending ``name``:

.. code-block::
GET /?__order=-rating,name
-------------------------------------------------------------------------------

0.51.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.51.0"
__VERSION__ = "0.52.0"

0 comments on commit 624dda7

Please sign in to comment.