diff --git a/CHANGES.md b/CHANGES.md index 6dfe163a..a27935c2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -9,6 +9,24 @@ Note to self: Breaking changes must increment either --> +## 0.29.0 (2024-07-01) + +_**Breaking**_ ⚠️ + +> patch: moves `btc_address` module to `crypto_addresses` module by @msamsami in [#383](https://github.com/python-validators/validators/pull/383) + +_**Features**_ + +> feat: adds `eth_address` validator by @msamsami in [#383](https://github.com/python-validators/validators/pull/383) + +_**Maintenance**_ + +- chore: adds a new dependency group for `eth_address` by @msamsami in [#383](https://github.com/python-validators/validators/pull/383) +- chore: adds a redundant dependency group `testing`, updates testing workflow by @msamsami in [#383](https://github.com/python-validators/validators/pull/383) +- chore: updates dev dependencies; bump version by @msamsami in [#383](https://github.com/python-validators/validators/pull/383) + +**Full Changelog**: [`0.28.3...0.29.0`](https://github.com/python-validators/validators/compare/0.28.3...0.29.0) + ## 0.28.3 (2024-05-25) _**Breaking**_ diff --git a/SECURITY.md b/SECURITY.md index 5c9f751e..2a65546a 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,7 +4,7 @@ | Version | Supported | | ---------- | ------------------ | -| `>=0.28.3` | :white_check_mark: | +| `>=0.29.0` | :white_check_mark: | ## Reporting a Vulnerability diff --git a/src/validators/__init__.py b/src/validators/__init__.py index 23da82bd..b30465c2 100644 --- a/src/validators/__init__.py +++ b/src/validators/__init__.py @@ -103,4 +103,4 @@ "validator", ) -__version__ = "0.28.3" +__version__ = "0.29.0"