Skip to content

Commit def0628

Browse files
committed
Bump crate versions to 0.0.105/invoice 0.13
1 parent afc7400 commit def0628

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

lightning-background-processor/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-background-processor"
3-
version = "0.0.104"
3+
version = "0.0.105"
44
authors = ["Valentine Wallace <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "http://github.com/lightningdevkit/rust-lightning"
@@ -15,9 +15,9 @@ rustdoc-args = ["--cfg", "docsrs"]
1515

1616
[dependencies]
1717
bitcoin = "0.27"
18-
lightning = { version = "0.0.104", path = "../lightning", features = ["std"] }
19-
lightning-persister = { version = "0.0.104", path = "../lightning-persister" }
18+
lightning = { version = "0.0.105", path = "../lightning", features = ["std"] }
19+
lightning-persister = { version = "0.0.105", path = "../lightning-persister" }
2020

2121
[dev-dependencies]
22-
lightning = { version = "0.0.104", path = "../lightning", features = ["_test_utils"] }
23-
lightning-invoice = { version = "0.12.0", path = "../lightning-invoice" }
22+
lightning = { version = "0.0.105", path = "../lightning", features = ["_test_utils"] }
23+
lightning-invoice = { version = "0.13.0", path = "../lightning-invoice" }

lightning-block-sync/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-block-sync"
3-
version = "0.0.104"
3+
version = "0.0.105"
44
authors = ["Jeffrey Czyz", "Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "http://github.com/lightningdevkit/rust-lightning"
@@ -19,7 +19,7 @@ rpc-client = [ "serde", "serde_json", "chunked_transfer" ]
1919

2020
[dependencies]
2121
bitcoin = "0.27"
22-
lightning = { version = "0.0.104", path = "../lightning" }
22+
lightning = { version = "0.0.105", path = "../lightning" }
2323
tokio = { version = "1.0", features = [ "io-util", "net", "time" ], optional = true }
2424
serde = { version = "1.0", features = ["derive"], optional = true }
2525
serde_json = { version = "1.0", optional = true }

lightning-invoice/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lightning-invoice"
33
description = "Data structures to parse and serialize BOLT11 lightning invoices"
4-
version = "0.12.0"
4+
version = "0.13.0"
55
authors = ["Sebastian Geisler <[email protected]>"]
66
documentation = "https://docs.rs/lightning-invoice/"
77
license = "MIT OR Apache-2.0"
@@ -19,13 +19,13 @@ std = ["bitcoin_hashes/std", "num-traits/std", "lightning/std", "bech32/std"]
1919

2020
[dependencies]
2121
bech32 = { version = "0.8", default-features = false }
22-
lightning = { version = "0.0.104", path = "../lightning", default-features = false }
22+
lightning = { version = "0.0.105", path = "../lightning", default-features = false }
2323
secp256k1 = { version = "0.20", default-features = false, features = ["recovery", "alloc"] }
2424
num-traits = { version = "0.2.8", default-features = false }
2525
bitcoin_hashes = { version = "0.10", default-features = false }
2626
hashbrown = { version = "0.11", optional = true }
2727
core2 = { version = "0.3.0", default-features = false, optional = true }
2828

2929
[dev-dependencies]
30-
lightning = { version = "0.0.104", path = "../lightning", default-features = false, features = ["_test_utils"] }
30+
lightning = { version = "0.0.105", path = "../lightning", default-features = false, features = ["_test_utils"] }
3131
hex = "0.4"

lightning-net-tokio/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-net-tokio"
3-
version = "0.0.104"
3+
version = "0.0.105"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning/"
@@ -16,7 +16,7 @@ rustdoc-args = ["--cfg", "docsrs"]
1616

1717
[dependencies]
1818
bitcoin = "0.27"
19-
lightning = { version = "0.0.104", path = "../lightning" }
19+
lightning = { version = "0.0.105", path = "../lightning" }
2020
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "sync", "net", "time" ] }
2121

2222
[dev-dependencies]

lightning-persister/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-persister"
3-
version = "0.0.104"
3+
version = "0.0.105"
44
authors = ["Valentine Wallace", "Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning/"
@@ -17,11 +17,11 @@ _bench_unstable = ["lightning/_bench_unstable"]
1717

1818
[dependencies]
1919
bitcoin = "0.27"
20-
lightning = { version = "0.0.104", path = "../lightning" }
20+
lightning = { version = "0.0.105", path = "../lightning" }
2121
libc = "0.2"
2222

2323
[target.'cfg(windows)'.dependencies]
2424
winapi = { version = "0.3", features = ["winbase"] }
2525

2626
[dev-dependencies]
27-
lightning = { version = "0.0.104", path = "../lightning", features = ["_test_utils"] }
27+
lightning = { version = "0.0.105", path = "../lightning", features = ["_test_utils"] }

lightning/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning"
3-
version = "0.0.104"
3+
version = "0.0.105"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning/"

0 commit comments

Comments
 (0)