From 7a2d650a4a7b4d04635d711a9c6e42f41d1e0aaf Mon Sep 17 00:00:00 2001 From: Yasser Tahiri Date: Wed, 3 Jul 2024 16:37:01 +0100 Subject: [PATCH] Bump version to 2.9.0 (#196) --- HISTORY.md | 15 +++++++++++++++ pydantic_extra_types/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index b781e319..381beca3 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,21 @@ ## Latest Changes +## 2.9.0 + +### Types + +* Add Semantic version type. PR [#195](https://github.com/pydantic/pydantic-extra-types/pull/195) by [@nikstuckenbrock](https://github.com/nikstuckenbrock) +* Add timezone name validation. PR [#193](https://github.com/pydantic/pydantic-extra-types/pull/193) by [@07pepa](https://github.com/07pepa) + +### Refactor + +* Replace try-except block by if-else statement. PR [#192](https://github.com/pydantic/pydantic-extra-types/pull/192) by [@maxsos](https://github.com/maxsos) + +### Dependencies + +* ⬆ Bump the python-packages group with 4 updates. PR [#194](https://github.com/pydantic/pydantic-extra-types/pull/194) by @dependabot + ## 2.8.2 * 🐛 Preserve timezone information when validating Pendulum DateTimes. [#189](https://github.com/pydantic/pydantic-extra-types/pull/189) by [@chrisguidry diff --git a/pydantic_extra_types/__init__.py b/pydantic_extra_types/__init__.py index 964a32ab..387cfacc 100644 --- a/pydantic_extra_types/__init__.py +++ b/pydantic_extra_types/__init__.py @@ -1 +1 @@ -__version__ = '2.8.2' +__version__ = '2.9.0'