From 8fa1847edbf77405d31d47a2fef69e78a9a4603a Mon Sep 17 00:00:00 2001 From: Daniel Townsend Date: Fri, 22 Oct 2021 11:20:53 +0100 Subject: [PATCH] bumped version --- CHANGES.rst | 6 ++++++ piccolo_admin/version.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 1c6bb469..4b80ddfc 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changes ======= +0.16.1 +------ +Fixed bugs with nullable ``ForeignKey`` and ``Timestamp`` columns - the UI +would try sending back an empty string, instead of a ``null`` value. Courtesy +@sinisaos. + 0.16.0 ------ JSON values are now displayed in a nicer format in the UI (courtesy @sinisaos). diff --git a/piccolo_admin/version.py b/piccolo_admin/version.py index 62c494fc..e345489f 100644 --- a/piccolo_admin/version.py +++ b/piccolo_admin/version.py @@ -1 +1 @@ -__VERSION__ = "0.16.0" +__VERSION__ = "0.16.1"