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"