diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5151988..0a341e7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.4.0" + ".": "2.5.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e0200f..78671f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.5.0](https://github.com/blindpaylabs/blindpay-python/compare/v2.4.0...v2.5.0) (2026-07-27) + + +### Features + +* **customers:** add customer.* webhook events and customer_id list filters ([#52](https://github.com/blindpaylabs/blindpay-python/issues/52)) ([562f219](https://github.com/blindpaylabs/blindpay-python/commit/562f2190dc53ecc6fc39a41a3d759b8ecb65cb39)) + ## [2.4.0](https://github.com/blindpaylabs/blindpay-python/compare/v2.3.0...v2.4.0) (2026-06-16) diff --git a/pyproject.toml b/pyproject.toml index 2e59fcd..7f7614a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "blindpay" -version = "2.4.0" +version = "2.5.0" description = "Official Python SDK for the Blindpay API — Global payments infrastructure" readme = "README.md" authors = [{ name = "Blindpay", email = "alves@blindpay.com" }] diff --git a/src/blindpay/__init__.py b/src/blindpay/__init__.py index eed3fae..ca54f7e 100644 --- a/src/blindpay/__init__.py +++ b/src/blindpay/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.4.0" +__version__ = "2.5.0" from ._internal.exceptions import BlindPayError from .client import BlindPay, BlindPaySync