diff --git a/Cargo.lock b/Cargo.lock index 7a29258c..20be4e17 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1215,7 +1215,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2 0.4.10", + "socket2 0.5.7", "tokio", "tower-service", "tracing", @@ -1731,7 +1731,7 @@ checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" [[package]] name = "payjoin" -version = "0.19.0" +version = "0.20.0" dependencies = [ "bhttp", "bip21", @@ -1759,7 +1759,7 @@ dependencies = [ [[package]] name = "payjoin-cli" -version = "0.0.8-alpha" +version = "0.0.9-alpha" dependencies = [ "anyhow", "async-trait", diff --git a/payjoin-cli/CHANGELOG.md b/payjoin-cli/CHANGELOG.md index c6899ac3..d5e8ad88 100644 --- a/payjoin-cli/CHANGELOG.md +++ b/payjoin-cli/CHANGELOG.md @@ -1,5 +1,10 @@ # payjoin-cli Changelog +## 0.0.9-alpha + +- Make backwards-compatible v2 to v1 sends possible +- Bump payjoin to v0.20.0 + ## 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. diff --git a/payjoin-cli/Cargo.toml b/payjoin-cli/Cargo.toml index 3f615204..2b1422e8 100644 --- a/payjoin-cli/Cargo.toml +++ b/payjoin-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "payjoin-cli" -version = "0.0.8-alpha" +version = "0.0.9-alpha" authors = ["Dan Gould "] description = "A command-line Payjoin client for Bitcoin Core" repository = "https://github.com/payjoin/rust-payjoin" @@ -34,7 +34,7 @@ env_logger = "0.9.0" hyper = { version = "0.14", features = ["full"] } hyper-rustls = { version = "0.25", optional = true } log = "0.4.7" -payjoin = { version = "0.19.0", features = ["send", "receive", "base64"] } +payjoin = { version = "0.20.0", features = ["send", "receive", "base64"] } rcgen = { version = "0.11.1", optional = true } reqwest = { version = "0.12", default-features = false } rustls = { version = "0.22.2", optional = true } diff --git a/payjoin/CHANGELOG.md b/payjoin/CHANGELOG.md index 7f8784e7..df30df16 100644 --- a/payjoin/CHANGELOG.md +++ b/payjoin/CHANGELOG.md @@ -1,5 +1,12 @@ # Payjoin Changelog +## 0.20.0 + +- remove `contribute_non_witness_input` because it was unused +- Fix output checks +- Make backwards-compatible v2 to v1 sends possible +- Bump bitcoin to v0.32.2 + ## 0.19.0 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. diff --git a/payjoin/Cargo.toml b/payjoin/Cargo.toml index ca3ce295..e8f3c00d 100644 --- a/payjoin/Cargo.toml +++ b/payjoin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "payjoin" -version = "0.19.0" +version = "0.20.0" authors = ["Dan Gould "] description = "Payjoin Library for the BIP78 Pay to Endpoint protocol." repository = "https://github.com/payjoin/rust-payjoin"