From 4ce6547b97cec7aed329a89c9a7e8c67521c0f00 Mon Sep 17 00:00:00 2001 From: Daniel Townsend Date: Sun, 24 Oct 2021 22:17:35 +0100 Subject: [PATCH] bumped version --- CHANGES.rst | 7 +++++++ piccolo_admin/version.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 4b80ddfc..579e1a5b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,13 @@ Changes ======= +0.17.0 +------ +Added ``TableConfig``, which allows more fine grained control over how the +UI behaves for a given ``Table``. Currently it allows you to specify which +columns are visible on the list page, but more options will be added in the +future. Courtesy @sinisaos. + 0.16.1 ------ Fixed bugs with nullable ``ForeignKey`` and ``Timestamp`` columns - the UI diff --git a/piccolo_admin/version.py b/piccolo_admin/version.py index e345489f..db7a8516 100644 --- a/piccolo_admin/version.py +++ b/piccolo_admin/version.py @@ -1 +1 @@ -__VERSION__ = "0.16.1" +__VERSION__ = "0.17.0"