From cd3bc7485b3c61045c86b9c21625fcc7356602e9 Mon Sep 17 00:00:00 2001 From: Daniel Townsend Date: Mon, 13 Dec 2021 19:44:50 +0000 Subject: [PATCH] bumped version --- CHANGES | 8 ++++++++ piccolo_api/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 68017497..8bdbd7cf 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,14 @@ Changes ======= +0.30.1 +------ + * Streamlined the ``CSRFMiddleware`` code, and added missing type annotations. + * If using the ``__visible_fields`` parameter with ``PiccoloCRUD``, and the + field name is unrecognised, the error response will list the correct field + names. + * Improved test coverage (courtesy @sinisaos). + 0.30.0 ------ We recently added the ``__visible_fields`` GET parameter to ``PiccoloCRUD``, diff --git a/piccolo_api/__init__.py b/piccolo_api/__init__.py index 18b9a0cb..0e18cc64 100644 --- a/piccolo_api/__init__.py +++ b/piccolo_api/__init__.py @@ -1 +1 @@ -__VERSION__ = "0.30.0" +__VERSION__ = "0.30.1"