From 63c683d9fc7b494bf81e964f97ec2f9b78b8e09d Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Fri, 30 Dec 2022 09:53:51 +0000 Subject: [PATCH] prepare for v1.10.4 release --- HISTORY.md | 6 ++++++ changes/4885-samuelcolvin.md | 1 - docs/blog/pydantic-v2.md | 4 ++++ pydantic/version.py | 2 +- 4 files changed, 11 insertions(+), 2 deletions(-) delete mode 100644 changes/4885-samuelcolvin.md diff --git a/HISTORY.md b/HISTORY.md index 9185449e17..9fa10487b9 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,11 @@ +## v1.10.4 (2022-12-30) + +* Change dependency to `typing-extensions>=4.2.0`, #4885 by @samuelcolvin + ## v1.10.3 (2022-12-29) +**NOTE: v1.10.3 was ["yanked"](https://pypi.org/help/#yanked) from PyPI due to #4885 which is fixed in v1.10.4** + * fix parsing of custom root models, #4883 by @gou177 * fix: use dataclass proxy for frozen or empty dataclasses, #4878 by @PrettyWood * Fix `schema` and `schema_json` on models where a model instance is a one of default values, #4781 by @Bobronium diff --git a/changes/4885-samuelcolvin.md b/changes/4885-samuelcolvin.md deleted file mode 100644 index efcf96e581..0000000000 --- a/changes/4885-samuelcolvin.md +++ /dev/null @@ -1 +0,0 @@ -Change dependency to `typing-extensions>=4.2.0` diff --git a/docs/blog/pydantic-v2.md b/docs/blog/pydantic-v2.md index 24f12df9de..a42b51fa23 100644 --- a/docs/blog/pydantic-v2.md +++ b/docs/blog/pydantic-v2.md @@ -15,6 +15,10 @@ Updated late 10 Jul 2022, see [pydantic#4226](https://github.com/pydantic/pydantic/pull/4226). +Update 30 Dec 2022: **The new release deadline for Pydantic V2 is the end of Q1 2023**, +see [pydantic#4887](https://github.com/pydantic/pydantic/issues/4887) for more details, futher updates +will be posted on that issue. + --- I've spoken to quite a few people about pydantic V2, and mention it in passing even more. diff --git a/pydantic/version.py b/pydantic/version.py index d65155a00c..a5797d56b0 100644 --- a/pydantic/version.py +++ b/pydantic/version.py @@ -1,6 +1,6 @@ __all__ = 'compiled', 'VERSION', 'version_info' -VERSION = '1.10.3' +VERSION = '1.10.4' try: import cython # type: ignore