From 32ea8853450b50e5b963ce677ab1fff95bc2e56a Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Wed, 31 Aug 2022 10:57:25 +0100 Subject: [PATCH] prepare for v1.10.1 --- HISTORY.md | 4 ++++ changes/4455-czaki.md | 1 - pydantic/version.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 changes/4455-czaki.md diff --git a/HISTORY.md b/HISTORY.md index 45d7c966a0..9e9eafeb71 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,7 @@ +## v1.10.1 (2022-08-31) + +* Add `__hash__` method to `pydancic.color.Color` class, #4454 by @czaki + ## v1.10.0 (2022-08-30) * Refactor the whole _pydantic_ `dataclass` decorator to really act like its standard lib equivalent. diff --git a/changes/4455-czaki.md b/changes/4455-czaki.md deleted file mode 100644 index a443079828..0000000000 --- a/changes/4455-czaki.md +++ /dev/null @@ -1 +0,0 @@ -bugfix: Add `__hash__` method to `pydancic.color.Color` class. \ No newline at end of file diff --git a/pydantic/version.py b/pydantic/version.py index e7eced2b10..2ec0b8d484 100644 --- a/pydantic/version.py +++ b/pydantic/version.py @@ -1,6 +1,6 @@ __all__ = 'compiled', 'VERSION', 'version_info' -VERSION = '1.10.0' +VERSION = '1.10.1' try: import cython # type: ignore