Skip to content

Commit a5bbd4b

Browse files
Release version 0.1.5
1 parent e2d8839 commit a5bbd4b

3 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.5] - 2026-01-30
11+
12+
### Changed
13+
- README: Updated example to use product search instead of merchant search (demonstrates text search capability)
14+
15+
### Fixed
16+
- GitHub workflow: Fixed sync-api workflow to use production API URL instead of localhost
17+
1018
## [0.1.4] - 2026-01-30
1119

1220
### Added

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ async def main():
3131
for result in results.results:
3232
print(f"{result.resource}: {result.description}")
3333

34-
# Search UCP merchants
35-
merchants = await client.ucp.merchants.search(industry="retail")
36-
for merchant in merchants.merchants:
37-
print(f"{merchant.name}: {merchant.domain}")
34+
# Search UCP products
35+
products = await client.ucp.products.search("laptop case")
36+
for product in products.products:
37+
print(f"{product.title} - ${product.price.amount / 100:.2f}")
3838

3939
asyncio.run(main())
4040
```

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "rencom"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Official Python SDK for the Rencom API - unified search for x402 resources and UCP merchants"
99
readme = "README.md"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)