diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2b1fcc7..d0a2c8d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.0" + ".": "1.2.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 2608d8b..4177bad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.2.0](https://github.com/blindpaylabs/blindpay-python/compare/v1.1.0...v1.2.0) (2025-11-12) + + +### Features + +* add new tos and solana endpoints ([#10](https://github.com/blindpaylabs/blindpay-python/issues/10)) ([1a37f28](https://github.com/blindpaylabs/blindpay-python/commit/1a37f285464a0b23ebbe532c6f7b14d58b8a04ec)) + ## [1.1.0](https://github.com/blindpaylabs/blindpay-python/compare/v1.0.0...v1.1.0) (2025-11-11) diff --git a/pyproject.toml b/pyproject.toml index 133ef00..c243bd4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "blindpay" -version = "1.1.0" +version = "1.2.0" description = "Official Python SDK for the Blindpay API — Global payments infrastructure" readme = "README.md" authors = [{ name = "Blindpay", email = "gabriel@blindpay.com" }] diff --git a/src/blindpay/__init__.py b/src/blindpay/__init__.py index 8032b59..1374c19 100644 --- a/src/blindpay/__init__.py +++ b/src/blindpay/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.1.0" +__version__ = "1.2.0" from ._internal.exceptions import BlindPayError from .client import BlindPay, BlindPaySync