Skip to content

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Nov 8, 2020
1 parent f9438a2 commit 77afec4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
Changes
=======

0.14.3
------
* Queries can be directly awaited - ``await MyTable.select()``, as an
alternative to using the run method ``await MyTable.select().run()``.
* The ``piccolo asgi new`` command now accepts a ``name`` argument, which is
used to populate the default database name within the template.

0.14.2
------
* Centralised code for importing Piccolo apps and tables - laying the
foundation for fixtures.
* Made orjson an optional dependency, installable using
`pip install piccolo[orjson]`.
``pip install piccolo[orjson]``.
* Improved version number parsing in Postgres.

0.14.1
Expand Down Expand Up @@ -187,7 +194,7 @@ an ``ImportError`` when importing `piccolo_conf.py`.

0.9.1
-----
Auto migration fixes, and ``.first()`` method now returns None is no match is
Auto migration fixes, and ``.first()`` method now returns None if no match is
found.

0.9.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.14.2"
__VERSION__ = "0.14.3"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aiosqlite==0.15.0
aiosqlite==0.16.0
asgiref==3.3.0
asyncpg==0.21.0
black==19.10b0
Expand Down

0 comments on commit 77afec4

Please sign in to comment.