From 1b34405cd9ee211d9eff96fd30e91328fef0acc7 Mon Sep 17 00:00:00 2001 From: Daniel Townsend Date: Tue, 1 Oct 2024 09:49:35 +0100 Subject: [PATCH] bumped version --- CHANGES.rst | 12 ++++++++++++ piccolo/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) 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"