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"