diff --git a/HISTORY.md b/HISTORY.md index 3101c276..5ec5b034 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,16 @@ ## Latest Changes +## 2.8.1 + +### Bug Fixes + +* 🐛 Fix Pendulum date time object to have correct typing. [#184](https://github.com/pydantic/pydantic-extra-types/pull/184) by [@07pepa](https://github.com/07pepa) + +### Types + +* ✨ Add parsing of pendulum_dt from unix time and non-strict parsing. [#185](https://github.com/pydantic/pydantic-extra-types/pull/185) by [@07pepa](https://github.com/07pepa) + ## 2.8.0 ### Refactor diff --git a/pydantic_extra_types/__init__.py b/pydantic_extra_types/__init__.py index f2df444a..80e22f7a 100644 --- a/pydantic_extra_types/__init__.py +++ b/pydantic_extra_types/__init__.py @@ -1 +1 @@ -__version__ = '2.8.0' +__version__ = '2.8.1'