diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 20e9dbd..5b88671 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.1.0" + ".": "2.1.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 402831c..55cf582 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.1.1](https://github.com/blindpaylabs/blindpay-python/compare/v2.1.0...v2.1.1) (2026-04-20) + + +### Bug Fixes + +* sanitize workflow inputs ([#44](https://github.com/blindpaylabs/blindpay-python/issues/44)) ([e4db01a](https://github.com/blindpaylabs/blindpay-python/commit/e4db01ac2b6094ba1bfc37e3c9fbb00b9c9bf087)) + ## [2.1.0](https://github.com/blindpaylabs/blindpay-python/compare/v2.0.1...v2.1.0) (2026-04-18) diff --git a/pyproject.toml b/pyproject.toml index 255444a..97d38ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "blindpay" -version = "2.1.0" +version = "2.1.1" 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 538888a..882066b 100644 --- a/src/blindpay/__init__.py +++ b/src/blindpay/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.1.0" +__version__ = "2.1.1" from ._internal.exceptions import BlindPayError from .client import BlindPay, BlindPaySync