From b70a6691b05f07403663b3168624f49d078e4ba5 Mon Sep 17 00:00:00 2001 From: collerek Date: Fri, 27 Aug 2021 16:12:49 +0200 Subject: [PATCH] bump version --- docs/releases.md | 7 +++++++ ormar/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/releases.md b/docs/releases.md index a891e9e..0735513 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -1,3 +1,10 @@ +# 0.10.17 + +## ✨ Features + +* Allow overwriting the default pydantic type for model fields [#312](https://github.com/collerek/ormar/issues/285) + + # 0.10.16 ## ✨ Features diff --git a/ormar/__init__.py b/ormar/__init__.py index 1542801..222d30c 100644 --- a/ormar/__init__.py +++ b/ormar/__init__.py @@ -77,7 +77,7 @@ class UndefinedType: # pragma no cover Undefined = UndefinedType() -__version__ = "0.10.16" +__version__ = "0.10.17" __all__ = [ "Integer", "BigInteger",