Skip to content

Commit 0c44bb2

Browse files
committed
bumped version
1 parent 05da48d commit 0c44bb2

2 files changed

Lines changed: 25 additions & 1 deletion

File tree

CHANGES.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
Changes
22
=======
33

4+
0.82.0
5+
------
6+
7+
Traditionally, when instantiating a ``Table``, you passed in column values
8+
using kwargs:
9+
10+
.. code-block:: python
11+
12+
>>> await Manager(name='Guido').save()
13+
14+
You can now pass in a dictionary instead, which makes it easier for static
15+
typing analysis tools like Mypy to detect typos.
16+
17+
.. code-block:: python
18+
19+
>>> await Manager({Manager.name: 'Guido'}).save()
20+
21+
See `PR 565 <https://github.com/piccolo-orm/piccolo/pull/565>`_ for more info.
22+
23+
-------------------------------------------------------------------------------
24+
425
0.81.0
526
------
627

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

2751
0.80.2

piccolo/__init__.py

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

0 commit comments

Comments
 (0)