From 9cf0a7ded071c7bfcb4b24851e23ad4c6f11b1c0 Mon Sep 17 00:00:00 2001 From: collerek Date: Tue, 15 Dec 2020 14:31:13 +0100 Subject: [PATCH] connect db, bump ver, update releases --- docs/releases.md | 4 ++++ ormar/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/releases.md b/docs/releases.md index 97cbf8e..44f09c9 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -1,3 +1,7 @@ +# 0.7.5 + +* Fix for wrong relation column name in many_to_many relation joins (fix [#73][#73]) + # 0.7.4 * Allow multiple relations to the same related model/table. diff --git a/ormar/__init__.py b/ormar/__init__.py index ef770fb..044217b 100644 --- a/ormar/__init__.py +++ b/ormar/__init__.py @@ -44,7 +44,7 @@ class UndefinedType: # pragma no cover Undefined = UndefinedType() -__version__ = "0.7.4" +__version__ = "0.7.5" __all__ = [ "Integer", "BigInteger",