From 9bb537572d334c04ed420115616be2f8448a2ab2 Mon Sep 17 00:00:00 2001 From: Dan Gould Date: Thu, 23 Jul 2026 18:37:32 +0800 Subject: [PATCH] Bump payjoin-cli version to 1.0.0-rc.1 Track payjoin 1.0.0-rc.6, which insulated the bitcoin_uri crate from its public API. The CLI now reads BIP21 URIs through payjoin's own accessor methods and inherent check_pj_supported instead of the removed UriExt trait. No user-facing behavior changes. Refresh the lock files. --- Cargo-minimal.lock | 2 +- Cargo-recent.lock | 2 +- payjoin-cli/CHANGELOG.md | 12 ++++++++++++ payjoin-cli/Cargo.toml | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index e26ebdaaf..03094d0a9 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -2591,7 +2591,7 @@ dependencies = [ [[package]] name = "payjoin-cli" -version = "1.0.0-rc.0" +version = "1.0.0-rc.1" dependencies = [ "ahash 0.7.8", "anyhow", diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 0d5f3c52a..9d6a967b2 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -2722,7 +2722,7 @@ dependencies = [ [[package]] name = "payjoin-cli" -version = "1.0.0-rc.0" +version = "1.0.0-rc.1" dependencies = [ "ahash 0.7.8", "anyhow", diff --git a/payjoin-cli/CHANGELOG.md b/payjoin-cli/CHANGELOG.md index ba7b28d34..2373e0a63 100644 --- a/payjoin-cli/CHANGELOG.md +++ b/payjoin-cli/CHANGELOG.md @@ -1,5 +1,17 @@ # payjoin-cli Changelog +## 1.0.0-rc.1 + +Track payjoin 1.0.0-rc.6. The library insulated the `bitcoin_uri` crate from its +public API, so the CLI now reads BIP21 URIs through payjoin's own accessor +methods (`address()`, `amount()`, `set_amount()`) and the inherent +`check_pj_supported` method instead of the removed `UriExt` trait. No +user-facing behavior changes. + +Selected Improvements: + +- Insulate `bitcoin_uri` from the public API by @spacebear21 in [#1756](https://github.com/payjoin/rust-payjoin/pull/1756) + ## 1.0.0-rc.0 The 1.0.0-rc.0 release rewrites payjoin-cli's foundations. Session storage migrated from diff --git a/payjoin-cli/Cargo.toml b/payjoin-cli/Cargo.toml index 55f4b3409..52a102982 100644 --- a/payjoin-cli/Cargo.toml +++ b/payjoin-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "payjoin-cli" -version = "1.0.0-rc.0" +version = "1.0.0-rc.1" authors = ["Dan Gould "] description = "A command-line Payjoin client for Bitcoin Core" repository = "https://github.com/payjoin/rust-payjoin"