From fd3bb53ba17fcfb33e5df8b8ff93e003d3c228bc Mon Sep 17 00:00:00 2001 From: collerek Date: Fri, 11 Dec 2020 13:32:22 +0100 Subject: [PATCH] bump version, update realease docs --- docs/releases.md | 7 ++++++- ormar/__init__.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/releases.md b/docs/releases.md index a09424b..b566795 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -1,3 +1,7 @@ +# 0.7.3 + +* Fix for setting fetching related model with UUDI pk, which is a string in raw (fix [#71][#71]) + # 0.7.2 * Fix for overwriting related models with pk only in `Model.update() with fields passed as parameters` (fix [#70][#70]) @@ -188,4 +192,5 @@ Add queryset level methods [#19]: https://github.com/collerek/ormar/issues/19 [#60]: https://github.com/collerek/ormar/issues/60 [#68]: https://github.com/collerek/ormar/issues/68 -[#70]: https://github.com/collerek/ormar/issues/70 \ No newline at end of file +[#70]: https://github.com/collerek/ormar/issues/70 +[#71]: https://github.com/collerek/ormar/issues/71 \ No newline at end of file diff --git a/ormar/__init__.py b/ormar/__init__.py index 0319847..4b9e747 100644 --- a/ormar/__init__.py +++ b/ormar/__init__.py @@ -44,7 +44,7 @@ class UndefinedType: # pragma no cover Undefined = UndefinedType() -__version__ = "0.7.2" +__version__ = "0.7.3" __all__ = [ "Integer", "BigInteger",