Skip to content

Commit 77afec4

Browse files
committed
bumped version
1 parent f9438a2 commit 77afec4

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGES

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
Changes
22
=======
33

4+
0.14.3
5+
------
6+
* Queries can be directly awaited - ``await MyTable.select()``, as an
7+
alternative to using the run method ``await MyTable.select().run()``.
8+
* The ``piccolo asgi new`` command now accepts a ``name`` argument, which is
9+
used to populate the default database name within the template.
10+
411
0.14.2
512
------
613
* Centralised code for importing Piccolo apps and tables - laying the
714
foundation for fixtures.
815
* Made orjson an optional dependency, installable using
9-
`pip install piccolo[orjson]`.
16+
``pip install piccolo[orjson]``.
1017
* Improved version number parsing in Postgres.
1118

1219
0.14.1
@@ -187,7 +194,7 @@ an ``ImportError`` when importing `piccolo_conf.py`.
187194

188195
0.9.1
189196
-----
190-
Auto migration fixes, and ``.first()`` method now returns None is no match is
197+
Auto migration fixes, and ``.first()`` method now returns None if no match is
191198
found.
192199

193200
0.9.0

piccolo/__init__.py

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

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
aiosqlite==0.15.0
1+
aiosqlite==0.16.0
22
asgiref==3.3.0
33
asyncpg==0.21.0
44
black==19.10b0

0 commit comments

Comments
 (0)