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