From 15c82d978d9e3b3893f00982b9e0c5c8d5c7821d Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Tue, 4 Jul 2023 17:31:49 +0200 Subject: [PATCH] Prepare for 1.10.11 (#6420) --- HISTORY.md | 4 ++++ changes/6361-SharathHuddar.md | 1 - pydantic/version.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 changes/6361-SharathHuddar.md 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