diff --git a/Cargo.lock b/Cargo.lock index bfc7730b..58e548b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1752,7 +1752,7 @@ dependencies = [ [[package]] name = "payjoin-cli" -version = "0.0.7-alpha" +version = "0.0.8-alpha" dependencies = [ "anyhow", "async-trait", diff --git a/payjoin-cli/CHANGELOG.md b/payjoin-cli/CHANGELOG.md index d170a326..c6899ac3 100644 --- a/payjoin-cli/CHANGELOG.md +++ b/payjoin-cli/CHANGELOG.md @@ -1,5 +1,14 @@ # payjoin-cli Changelog +## 0.0.8-alpha + +This release attempts to stabilize the Payjoin V2 Bitcoin URI format. That includes placing v2-specific parameters in the URI's pj parameter's fragment and including the exp expiration parameter. + +- Update to `payjoin-0.19.0` + - Error if send or receive session expires with `exp` parameter [#299](https://github.com/payjoin/rust-payjoin/pull/299) + - Encode `&ohttp=` and `&exp=` parameters in the `&pj=` URL as a fragment instead of as URI params [#298](https://github.com/payjoin/rust-payjoin/pull/298) + - Allow receivers to make payjoins out of sweep transactions [#259](https://github.com/payjoin/rust-payjoin/pull/259) + ## 0.0.7-alpha - Resume multiple payjoins easily with the `resume` subcommand. A repeat `send` diff --git a/payjoin-cli/Cargo.toml b/payjoin-cli/Cargo.toml index 39f694b6..f8be1228 100644 --- a/payjoin-cli/Cargo.toml +++ b/payjoin-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "payjoin-cli" -version = "0.0.7-alpha" +version = "0.0.8-alpha" authors = ["Dan Gould "] description = "A command-line Payjoin client for Bitcoin Core" repository = "https://github.com/payjoin/rust-payjoin"