From 5476a758c8ac59887dbfa3aa1c3481d0a0e20837 Mon Sep 17 00:00:00 2001 From: Sydney Runkle <54324534+sydney-runkle@users.noreply.github.com> Date: Wed, 3 Apr 2024 07:38:40 -0500 Subject: [PATCH] prep for v1.10.15 release (#9157) --- HISTORY.md | 6 ++++++ pydantic/version.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 882ee46b0b..b85b155d00 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,9 @@ +## v1.10.15 (2024-04-03) + +* Add pydantic.v1 namespace to Pydantic v1 by @exs-dmiketa in https://github.com/pydantic/pydantic/pull/9042 +* Relax version of typing-extensions for V1 by @SonOfLilit in https://github.com/pydantic/pydantic/pull/8819 +* patch fix for mypy by @sydney-runkle in https://github.com/pydantic/pydantic/pull/8765 + ## v1.10.14 (2024-01-19) * Update install.md by @dmontagu in https://github.com/pydantic/pydantic/pull/7690 diff --git a/pydantic/version.py b/pydantic/version.py index ec982ba7d7..b1c5547750 100644 --- a/pydantic/version.py +++ b/pydantic/version.py @@ -1,6 +1,6 @@ __all__ = 'compiled', 'VERSION', 'version_info' -VERSION = '1.10.14' +VERSION = '1.10.15' try: import cython # type: ignore