diff --git a/CHANGES.rst b/CHANGES.rst index 4d589b67..6a2d0974 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,18 @@ Changes ======= +1.19.1 +------ + +Fixed a bug with the ``get_m2m`` method, which would raise a ``ValueError`` +when no objects were found. It now handles this gracefully and returns an empty +list instead. Thanks to @nVitius for this fix. + +Improved the ASGI templates (including a fix for the latest LiteStar version). +Thanks to @sinisaos for this. + +------------------------------------------------------------------------------- + 1.19.0 ------ diff --git a/piccolo/__init__.py b/piccolo/__init__.py index d6e05896..cca06428 100644 --- a/piccolo/__init__.py +++ b/piccolo/__init__.py @@ -1 +1 @@ -__VERSION__ = "1.19.0" +__VERSION__ = "1.19.1"