File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
3939asyncio.run(main())
4040```
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " rencom"
7- version = " 0.1.4 "
7+ version = " 0.1.5 "
88description = " Official Python SDK for the Rencom API - unified search for x402 resources and UCP merchants"
99readme = " README.md"
1010requires-python = " >=3.10"
You can’t perform that action at this time.
0 commit comments