From 9af4f9e14648ce2ee7493aadba6eb0a8192502e4 Mon Sep 17 00:00:00 2001 From: Max Shapira Date: Thu, 15 Sep 2022 10:20:10 +0300 Subject: [PATCH 1/2] update requirements in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d59310a..f3e9511 100755 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ The key features are: ## Requirements -- Python 3.6+ -- Django 2.2+ +- Python 3.7+ +- Django 3.0+ - Pydantic 1.6+ ## Installation From 84fcc68dc346f37f2066a982dc5350b7cdadc6dc Mon Sep 17 00:00:00 2001 From: Max Shapira Date: Thu, 15 Sep 2022 10:20:49 +0300 Subject: [PATCH 2/2] release version 0.0.8 --- dantico/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dantico/__init__.py b/dantico/__init__.py index 94fddf3..9a18dc4 100755 --- a/dantico/__init__.py +++ b/dantico/__init__.py @@ -1,6 +1,6 @@ """Tools to convert Django ORM models to Pydantic models""" -__version__ = "0.0.7" +__version__ = "0.0.8" from dantico.factory import SchemaFactory from dantico.model_schema import ModelSchema