We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0e90be commit 1b645cbCopy full SHA for 1b645cb
CHANGES
@@ -1,6 +1,17 @@
1
Changes
2
=======
3
4
+0.34.0
5
+------
6
+Added the ``get_or_create`` convenience method (courtesy @aminalaee). Example
7
+usage:
8
+
9
+.. code-block:: python
10
11
+ manager = await Manager.objects().get_or_create(
12
+ Manager.name == 'Guido'
13
+ ).run()
14
15
0.33.1
16
------
17
* Bug fix, where ``compare_dicts`` was failing in migrations if any ``Column``
piccolo/__init__.py
@@ -1 +1 @@
-__VERSION__ = "0.33.1"
+__VERSION__ = "0.34.0"
0 commit comments