Skip to content

Commit

Permalink
bumped version (#769)
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend authored Feb 21, 2023
1 parent 4e93ba3 commit 7e6012b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
Changes
=======

0.106.0
-------

Joins now work within ``update`` queries. For example:

.. code-block:: python
await Band.update({
Band.name: 'Amazing Band'
}).where(
Band.manager.name == 'Guido'
)
Other changes:

* Improved the template used by ``piccolo app new`` when creating a new
Piccolo app (it now uses ``table_finder``).

-------------------------------------------------------------------------------

0.105.0
-------

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

0 comments on commit 7e6012b

Please sign in to comment.