diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0454229..5151988 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.3.0" + ".": "2.4.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 4493d61..3e0200f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.4.0](https://github.com/blindpaylabs/blindpay-python/compare/v2.3.0...v2.4.0) (2026-06-16) + + +### Features + +* add customers resource, deprecate receivers (v2.3.0) ([#48](https://github.com/blindpaylabs/blindpay-python/issues/48)) ([28b8197](https://github.com/blindpaylabs/blindpay-python/commit/28b81975ded85fb572551e2e52eb3e19a13ce9da)) + ## [2.3.0](https://github.com/blindpaylabs/blindpay-python/compare/v2.2.0...v2.3.0) (2026-06-16) diff --git a/pyproject.toml b/pyproject.toml index 415a080..2e59fcd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "blindpay" -version = "2.3.0" +version = "2.4.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 9ee0a57..eed3fae 100644 --- a/src/blindpay/__init__.py +++ b/src/blindpay/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.3.0" +__version__ = "2.4.0" from ._internal.exceptions import BlindPayError from .client import BlindPay, BlindPaySync