From 69672fc050d6fb11511e0e4f16550216bd8f41de Mon Sep 17 00:00:00 2001 From: Daniel Townsend Date: Thu, 1 Sep 2022 20:08:50 +0100 Subject: [PATCH] bumped version --- CHANGES.rst | 14 ++++++++++++++ piccolo/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 69b206fc8..b98b15297 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,20 @@ Changes ======= +0.89.0 +------ + +Made it easier to access the ``Email`` columns on table. + +.. code-block:: python + + >>> MyTable._meta.email_columns + [MyTable.email_column_1, MyTable.email_column_2] + +This was added for Piccolo Admin. + +------------------------------------------------------------------------------- + 0.88.0 ------ diff --git a/piccolo/__init__.py b/piccolo/__init__.py index c3ddb547c..b2406f42b 100644 --- a/piccolo/__init__.py +++ b/piccolo/__init__.py @@ -1 +1 @@ -__VERSION__ = "0.88.0" +__VERSION__ = "0.89.0"