From 46e72f439ba5e9e441c57e3942622d0d6d1024bf Mon Sep 17 00:00:00 2001 From: Daniel Townsend Date: Tue, 23 Jan 2024 23:03:35 +0000 Subject: [PATCH] bumped version --- CHANGES.rst | 17 +++++++++++++++++ piccolo/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index fcb9a8fe4..13457e15b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,23 @@ Changes ======= +1.3.0 +----- + +Added the ``piccolo user list`` command - a quick and convenient way of listing +Piccolo Admin users from the command line. + +``ModelBuilder`` now creates timezone aware ``datetime`` objects for +``Timestamptz`` columns. + +Updated the ASGI templates. + +SQLite auto migrations are now allowed. We used to raise an exception, but +now we output a warning instead. While SQLite auto migrations aren't as feature +rich as Postgres, they work fine for simple use cases. + +------------------------------------------------------------------------------- + 1.2.0 ----- diff --git a/piccolo/__init__.py b/piccolo/__init__.py index 55f78263a..0b0ad2a01 100644 --- a/piccolo/__init__.py +++ b/piccolo/__init__.py @@ -1 +1 @@ -__VERSION__ = "1.2.0" +__VERSION__ = "1.3.0"