From a89c2fa57ba01f352e6830b99ff108b50b14c0e8 Mon Sep 17 00:00:00 2001 From: Daniel Townsend Date: Fri, 13 May 2022 09:57:32 +0100 Subject: [PATCH] bumped version --- CHANGES.rst | 16 ++++++++++++++++ piccolo/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 5a447a554..c45e62d5e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,22 @@ Changes ======= +0.74.4 +------ + +``piccolo schema generate`` now outputs a warning when it can't detect the +``ON DELETE`` and ``ON UPDATE`` for a ``ForeignKey``, rather than raising an +exception. Thanks to @theelderbeever for reporting this issue. + +``run_sync`` doesn't use the connection pool by default anymore. It was causing +issues when an app contained sync and async code. Thanks to @WintonLi for +reporting this issue. + +Added a tutorial to the docs for using Piccolo with an existing project and +database. Thanks to @virajkanwade for reporting this issue. + +------------------------------------------------------------------------------- + 0.74.3 ------ diff --git a/piccolo/__init__.py b/piccolo/__init__.py index 638e15e25..22d6db751 100644 --- a/piccolo/__init__.py +++ b/piccolo/__init__.py @@ -1 +1 @@ -__VERSION__ = "0.74.3" +__VERSION__ = "0.74.4"