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