Skip to content

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Jul 19, 2022
1 parent 05da48d commit 0c44bb2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
Changes
=======

0.82.0
------

Traditionally, when instantiating a ``Table``, you passed in column values
using kwargs:

.. code-block:: python
>>> await Manager(name='Guido').save()
You can now pass in a dictionary instead, which makes it easier for static
typing analysis tools like Mypy to detect typos.

.. code-block:: python
>>> await Manager({Manager.name: 'Guido'}).save()
See `PR 565 <https://github.com/piccolo-orm/piccolo/pull/565>`_ for more info.

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

0.81.0
------

Expand All @@ -22,6 +43,9 @@ names, in a single query:
... )
[{'name': 'Bad sound band'}, {'name': 'Tone deaf band'}]
See `PR 564 <https://github.com/piccolo-orm/piccolo/pull/564>`_ and
`PR 563 <https://github.com/piccolo-orm/piccolo/pull/563>`_ for more info.

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

0.80.2
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.81.0"
__VERSION__ = "0.82.0"

0 comments on commit 0c44bb2

Please sign in to comment.