Skip to content

Commit b453a1e

Browse files
committed
Bump payjoin-test-utils version to 0.0.1
1 parent 40e1035 commit b453a1e

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1674,7 +1674,7 @@ dependencies = [
16741674

16751675
[[package]]
16761676
name = "payjoin-test-utils"
1677-
version = "0.0.0"
1677+
version = "0.0.1"
16781678
dependencies = [
16791679
"bitcoin",
16801680
"bitcoin-ohttp",

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1674,7 +1674,7 @@ dependencies = [
16741674

16751675
[[package]]
16761676
name = "payjoin-test-utils"
1677-
version = "0.0.0"
1677+
version = "0.0.1"
16781678
dependencies = [
16791679
"bitcoin",
16801680
"bitcoin-ohttp",

payjoin-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ url = { version = "2.3.1", features = ["serde"] }
4949

5050
[dev-dependencies]
5151
nix = "0.26.4"
52-
payjoin-test-utils = { version = "0.0.0" }
52+
payjoin-test-utils = { version = "0.0.1" }

payjoin-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ hex = "0.4.3"
2929
lazy_static = "1.5.0"
3030
ohttp = { package = "bitcoin-ohttp", version = "0.6.0" }
3131
payjoin = { version = "0.24.0", features = ["v1", "v2", "io"] }
32-
payjoin-test-utils = { version = "0.0.0", optional = true }
32+
payjoin-test-utils = { version = "0.0.1", optional = true }
3333
serde = { version = "1.0.200", features = ["derive"] }
3434
serde_json = "1.0.128"
3535
thiserror = "1.0.58"

payjoin-test-utils/CHANGELOG.md

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

3+
## 0.0.1
4+
5+
- Export InMemoryTestPersister under _test-utils [#761](https://github.com/payjoin/rust-payjoin/pull/761)
6+
- Introduce constructors for SegWit input pairs [#712](https://github.com/payjoin/rust-payjoin/pull/712)
7+
- Move testing constants to payjoin-test-utils [#613](https://github.com/payjoin/rust-payjoin/pull/613)
8+
- Specify the versions for deps more precisely in the cargo toml [#696](https://github.com/payjoin/rust-payjoin/pull/696)
9+
- Extend tests for rest of receive module [#632](https://github.com/payjoin/rust-payjoin/pull/632)
10+
- Fix uninline format clippy violations [#667](https://github.com/payjoin/rust-payjoin/pull/667)
11+
312
## 0.0.0
413

514
- Release initial payjoin-test-utils to spin up payjoin test services

payjoin-test-utils/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-test-utils"
3-
version = "0.0.0"
3+
version = "0.0.1"
44
edition = "2021"
55
authors = ["Dan Gould <[email protected]>"]
66
description = "Payjoin test utilities"

payjoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ serde_json = { version = "1.0.108", optional = true }
4444

4545
[dev-dependencies]
4646
bitcoind = { version = "0.36.0", features = ["0_21_2"] }
47-
payjoin-test-utils = { version = "0.0.0" }
47+
payjoin-test-utils = { version = "0.0.1" }
4848
once_cell = "1.19.0"
4949
tokio = { version = "1.38.1", features = ["full"] }
5050
tracing = "0.1.40"

0 commit comments

Comments
 (0)