Skip to content

Commit 7d9e7f5

Browse files
authored
Bump payjoin version to 1.0.0-rc.1 (payjoin#1186)
2 parents b1f09b6 + 6c6ae80 commit 7d9e7f5

File tree

8 files changed

+16
-7
lines changed

8 files changed

+16
-7
lines changed

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2380,7 +2380,7 @@ checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
23802380

23812381
[[package]]
23822382
name = "payjoin"
2383-
version = "1.0.0-rc.0"
2383+
version = "1.0.0-rc.1"
23842384
dependencies = [
23852385
"bhttp",
23862386
"bitcoin 0.32.7",

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2380,7 +2380,7 @@ checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
23802380

23812381
[[package]]
23822382
name = "payjoin"
2383-
version = "1.0.0-rc.0"
2383+
version = "1.0.0-rc.1"
23842384
dependencies = [
23852385
"bhttp",
23862386
"bitcoin 0.32.7",

payjoin-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ http-body-util = { version = "0.1.3", optional = true }
3636
hyper = { version = "1.6.0", features = ["http1", "server"], optional = true }
3737
hyper-rustls = { version = "0.27.7", default-features=false, features = ["ring"], optional = true }
3838
hyper-util = { version = "0.1.16", optional = true }
39-
payjoin = { version = "1.0.0-rc.0", default-features = false }
39+
payjoin = { version = "1.0.0-rc.1", default-features = false }
4040
r2d2 = "0.8.10"
4141
r2d2_sqlite = "0.22.0"
4242
rcgen = { version = "0.14.3", optional = true }

payjoin-directory/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ hyper = { version = "1.6.0", features = ["http1", "server"] }
2828
hyper-rustls = { version = "0.27.7", default-features=false, features = ["webpki-roots", "http1", "ring"], optional=true }
2929
hyper-util = { version = "0.1.16", features = ["tokio"] }
3030
ohttp = { package = "bitcoin-ohttp", version = "0.6.0"}
31-
payjoin = { version = "1.0.0-rc.0", features = ["directory"], default-features = false }
31+
payjoin = { version = "1.0.0-rc.1", features = ["directory"], default-features = false }
3232
tokio = { version = "1.47.1", features = ["full"] }
3333
tokio-rustls = { version = "0.26.2", features = ["ring"], default-features = false, optional = true }
3434
tokio-rustls-acme = { version = "0.7.1", optional = true }

payjoin-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ bitcoin-ffi = { git = "https://github.com/benalleng/bitcoin-ffi.git", rev = "8e3
2727
hex = "0.4.3"
2828
lazy_static = "1.5.0"
2929
ohttp = { package = "bitcoin-ohttp", version = "0.6.0" }
30-
payjoin = { version = "1.0.0-rc.0", features = ["v1", "v2", "io"] }
30+
payjoin = { version = "1.0.0-rc.1", features = ["v1", "v2", "io"] }
3131
payjoin-test-utils = { version = "0.0.1", optional = true }
3232
serde = { version = "1.0.219", features = ["derive"] }
3333
serde_json = "1.0.142"

payjoin-test-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ log = "0.4.27"
1616
ohttp = { package = "bitcoin-ohttp", version = "0.6.0" }
1717
ohttp-relay = { version = "0.0.11", features = ["_test-util"] }
1818
once_cell = "1.21.3"
19-
payjoin = { version = "1.0.0-rc.0", features = ["io", "_manual-tls", "_test-utils"] }
19+
payjoin = { version = "1.0.0-rc.1", features = ["io", "_manual-tls", "_test-utils"] }
2020
payjoin-directory = { version = "0.0.3", features = ["_manual-tls"] }
2121
rcgen = "0.14.3"
2222
rustls = { version = "0.23.31", default-features=false, features = ["ring"] }

payjoin/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Payjoin Changelog
22

3+
## 1.0.0-rc.1
4+
5+
This release candidate fixes a BIP78 spec compliance bug, and an issue with the BIP77 sender when polling an arbitrary relay via RFC9540.
6+
It also removes a redundant Sender SessionEvent.
7+
8+
- Fix identify_receiver_outputs (#1168)
9+
- Use full_relay_url in sender GET request (#1166)
10+
- Remove `ReceivedProposalPsbt` infavor of session outcome (#1171)
11+
312
## 1.0.0-rc.0
413

514
Introduce monitoring typestates, replyable error handling, and other updates for more robust session lifecycle management.

payjoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "payjoin"
3-
version = "1.0.0-rc.0"
3+
version = "1.0.0-rc.1"
44
authors = ["Dan Gould <[email protected]>"]
55
description = "Payjoin Library implementing BIP 78 and BIP 77 batching protocols."
66
repository = "https://github.com/payjoin/rust-payjoin"

0 commit comments

Comments
 (0)