diff --git a/HISTORY.md b/HISTORY.md index b129569a4f..37e324ef6e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,7 @@ +## v1.10.11 (2023-07-04) + +* Importing create_model in tools.py through relative path instead of absolute path - so that it doesn't import V2 code when copied over to V2 branch, #6361 by @SharathHuddar + ## v2.0b3 (2023-06-16) Third beta pre-release of Pydantic V2 diff --git a/changes/6361-SharathHuddar.md b/changes/6361-SharathHuddar.md deleted file mode 100644 index 2897d88ff2..0000000000 --- a/changes/6361-SharathHuddar.md +++ /dev/null @@ -1 +0,0 @@ -Importing create_model in tools.py through relative path instead of absolute path - so that it doesn't import V2 code when copied over to V2 branch diff --git a/pydantic/version.py b/pydantic/version.py index b7114b49d9..49ddd535f0 100644 --- a/pydantic/version.py +++ b/pydantic/version.py @@ -1,6 +1,6 @@ __all__ = 'compiled', 'VERSION', 'version_info' -VERSION = '1.10.10' +VERSION = '1.10.11' try: import cython # type: ignore