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",