diff --git a/HISTORY.md b/HISTORY.md index 97c0b96..83e6ef0 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,7 @@ +## v1.6.1 (2020-07-15) + +* fix validation and parsing of nested models with `default_factory`, #1710 by @PrettyWood + ## v1.6 (2020-07-11) Thank you to pydantic's sponsors: @matin, @tiangolo, @chdsbd, @jorgecarleitao, and 1 anonymous sponsor for their kind support. diff --git a/changes/1710-PrettyWood.md b/changes/1710-PrettyWood.md deleted file mode 100644 index 67926fe..0000000 --- a/changes/1710-PrettyWood.md +++ /dev/null @@ -1 +0,0 @@ -fix validation and parsing of nested models with `default_factory` \ No newline at end of file diff --git a/pydantic/version.py b/pydantic/version.py index 7f74a9f..5634efb 100644 --- a/pydantic/version.py +++ b/pydantic/version.py @@ -1,6 +1,6 @@ __all__ = 'VERSION', 'version_info' -VERSION = '1.6' +VERSION = '1.6.1' def version_info() -> str: