diff --git a/HISTORY.md b/HISTORY.md index e4f6095fe9..882ee46b0b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,10 @@ +## v1.10.14 (2024-01-19) + +* Update install.md by @dmontagu in https://github.com/pydantic/pydantic/pull/7690 +* Fixes ci to only deploy docs on release by @sydney-runkle in https://github.com/pydantic/pydantic/pull/7740 +* Ubuntu fixes for V1 by @sydney-runkle in https://github.com/pydantic/pydantic/pull/8540 and https://github.com/pydantic/pydantic/pull/8587 +* Fix cached_property handling in dataclasses when copied by @rdbisme in https://github.com/pydantic/pydantic/pull/8407 + ## v1.10.13 (2023-09-27) * Fix: Add max length check to `pydantic.validate_email`, #7673 by @hramezani diff --git a/pydantic/version.py b/pydantic/version.py index 462c497857..ec982ba7d7 100644 --- a/pydantic/version.py +++ b/pydantic/version.py @@ -1,6 +1,6 @@ __all__ = 'compiled', 'VERSION', 'version_info' -VERSION = '1.10.13' +VERSION = '1.10.14' try: import cython # type: ignore