Skip to content

Commit aa48553

Browse files
authored
Bump payjoin to version 1.0.0 (payjoin#1801)
2 parents b4c2504 + e89c58e commit aa48553

8 files changed

Lines changed: 18 additions & 7 deletions

File tree

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2567,7 +2567,7 @@ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
25672567

25682568
[[package]]
25692569
name = "payjoin"
2570-
version = "1.0.0-rc.8"
2570+
version = "1.0.0"
25712571
dependencies = [
25722572
"bhttp",
25732573
"bitcoin",

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2698,7 +2698,7 @@ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
26982698

26992699
[[package]]
27002700
name = "payjoin"
2701-
version = "1.0.0-rc.8"
2701+
version = "1.0.0"
27022702
dependencies = [
27032703
"bhttp",
27042704
"bitcoin",

payjoin-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dirs = "6.0.0"
3535
http-body-util = { version = "0.1.3", optional = true }
3636
hyper = { version = "1.8.0", features = ["http1", "server"], optional = true }
3737
hyper-util = { version = "0.1.18", optional = true }
38-
payjoin = { version = "1.0.0-rc.8", default-features = false }
38+
payjoin = { version = "1.0.0", default-features = false }
3939
pest_derive = "2.7.0"
4040
r2d2 = "0.8.10"
4141
r2d2_sqlite = "0.22.0"

payjoin-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ getrandom = "0.2.10"
2727
icu_locale_core = "=2.0.1"
2828
icu_provider = "=2.0.0"
2929
lazy_static = "1.5.0"
30-
payjoin = { version = "1.0.0-rc.8", features = ["v1", "v2"] }
30+
payjoin = { version = "1.0.0", features = ["v1", "v2"] }
3131
payjoin-test-utils = { version = "0.0.1", optional = true }
3232
serde = { version = "1.0.228", features = ["derive"] }
3333
serde_json = "1.0.149"

payjoin-mailroom/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ opentelemetry-otlp = { version = "0.32", optional = true, default-features = fal
6767
"http-proto",
6868
] }
6969
opentelemetry_sdk = "0.32"
70-
payjoin = { version = "1.0.0-rc.8", features = [
70+
payjoin = { version = "1.0.0", features = [
7171
"directory",
7272
], default-features = false }
7373
rand = "0.8"

payjoin-test-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ futures = { version = "0.3.21", default-features = false, features = ["std"] }
3232
http = { version = "1.3.1", optional = true }
3333
ohttp = { package = "bitcoin-ohttp", version = "0.6.0", optional = true }
3434
once_cell = "1.21.3"
35-
payjoin = { version = "1.0.0-rc.8", default-features = false }
35+
payjoin = { version = "1.0.0", default-features = false }
3636
payjoin-mailroom = { version = "0.1.2", features = ["_manual-tls"] }
3737
tar = "0.4.20"
3838
# Pin to 0.14.7 (last version to support our MSRV 1.85)

payjoin/CHANGELOG.md

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

3+
## 1.0.0
4+
5+
The first stable release of the payjoin library supports both synchronous
6+
BIP 78 payjoins and asynchronous BIP 77 payjoins. The BIP 77 sender and
7+
receiver APIs use typestate-driven session workflows, event-log persistence,
8+
and explicit monitoring, cancellation, and fallback paths so interrupted
9+
sessions can be safely resumed.
10+
11+
This release stabilizes the public API and persisted session format developed
12+
through the 0.24, 0.25, and 1.0 release candidates.
13+
314
## 1.0.0-rc.8
415

516
This release tightens the sender's validation of the sighash types declared on

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.8"
3+
version = "1.0.0"
44
authors = ["Dan Gould <d@ngould.dev>"]
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)