Skip to content

Commit 436c12f

Browse files
sync: monorepo 48a2ba84 (sdk-python-v0.2.18)
1 parent 8a34dbc commit 436c12f

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.2.18](https://github.com/bridgenode-ai/bridgenode-llm/compare/bridgenode-llm-v0.2.17...bridgenode-llm-v0.2.18) (2026-08-30)
4+
5+
6+
### Bug Fixes
7+
8+
* **deps:** x402 bounds `>=2.20.0,<3` — handle_402_response requires `request_url` (2.19 breaks) (B-5, §8.4)
9+
310
## [0.2.17](https://github.com/bridgenode-ai/bridgenode-llm/compare/bridgenode-llm-v0.2.16...bridgenode-llm-v0.2.17) (2026-08-26)
411

512

bridgenode_llm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
from .client import BRIDGENODE_BASE_URL, BridgenodeError, LLMClient
99

1010
__all__ = ["LLMClient", "BridgenodeError", "BRIDGENODE_BASE_URL"]
11-
__version__ = "0.2.17"
11+
__version__ = "0.2.18"

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "bridgenode-llm"
3-
version = "0.2.17"
3+
version = "0.2.18"
44
description = "Agentic AI inference with x402 (HTTP 402) pay-per-request on Solana USDC — no API keys, no registration."
55
readme = "README.md"
66
requires-python = ">=3.11"
@@ -27,8 +27,8 @@ classifiers = [
2727
"Natural Language :: English",
2828
]
2929
dependencies = [
30-
"x402[svm]>=2.19.0",
31-
"x402[extensions]>=2.19.0", # client.py imports x402.extensions.sign_in_with_x — clean install fails without it
30+
"x402[svm]>=2.20.0,<3",
31+
"x402[extensions]>=2.20.0,<3", # client.py imports x402.extensions.sign_in_with_x — clean install fails without it
3232
"solana>=0.36.0,<0.40", # solana 0.40.x removed solana.rpc.api — x402 imports it (broken combo)
3333
"httpx>=0.28.1",
3434
"python-dotenv>=1.2.2",

0 commit comments

Comments
 (0)