Skip to content

Commit 8a91bd9

Browse files
authored
Merge pull request #835 from TheBlueMatt/2021-03-0.0.13
Bump Version to 0.0.13
2 parents c896461 + d65d7e7 commit 8a91bd9

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

background-processor/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
2-
name = "background-processor"
3-
version = "0.1.0"
2+
name = "lightning-background-processor"
3+
version = "0.0.13"
44
authors = ["Valentine Wallace <[email protected]>"]
55
edition = "2018"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
1010
bitcoin = "0.26"
11-
lightning = { version = "0.0.12", path = "../lightning", features = ["allow_wallclock_use"] }
12-
lightning-persister = { version = "0.0.1", path = "../lightning-persister" }
11+
lightning = { version = "0.0.13", path = "../lightning", features = ["allow_wallclock_use"] }
12+
lightning-persister = { version = "0.0.13", path = "../lightning-persister" }
1313

1414
[dev-dependencies]
15-
lightning = { version = "0.0.12", path = "../lightning", features = ["_test_utils"] }
15+
lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }

background-processor/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ mod tests {
268268
loop {
269269
let log_entries = nodes[0].logger.lines.lock().unwrap();
270270
let desired_log = "Calling manager's timer_chan_freshness_every_min".to_string();
271-
if log_entries.get(&("background_processor".to_string(), desired_log)).is_some() {
271+
if log_entries.get(&("lightning_background_processor".to_string(), desired_log)).is_some() {
272272
break
273273
}
274274
}

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.1"
3+
version = "0.0.13"
44
authors = ["Jeffrey Czyz", "Matt Corallo"]
55
license = "Apache-2.0"
66
edition = "2018"
@@ -14,7 +14,7 @@ rpc-client = [ "serde", "serde_json", "chunked_transfer" ]
1414

1515
[dependencies]
1616
bitcoin = "0.26"
17-
lightning = { version = "0.0.12", path = "../lightning" }
17+
lightning = { version = "0.0.13", path = "../lightning" }
1818
tokio = { version = "1.0", features = [ "io-util", "net" ], optional = true }
1919
serde = { version = "1.0", features = ["derive"], optional = true }
2020
serde_json = { version = "1.0", optional = true }

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.5"
3+
version = "0.0.13"
44
authors = ["Matt Corallo"]
55
license = "Apache-2.0"
66
edition = "2018"
@@ -11,7 +11,7 @@ For Rust-Lightning clients which wish to make direct connections to Lightning P2
1111

1212
[dependencies]
1313
bitcoin = "0.26"
14-
lightning = { version = "0.0.12", path = "../lightning" }
14+
lightning = { version = "0.0.13", path = "../lightning" }
1515
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "sync", "net", "time" ] }
1616

1717
[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.1"
3+
version = "0.0.13"
44
authors = ["Valentine Wallace", "Matt Corallo"]
55
license = "Apache-2.0"
66
description = """
@@ -9,7 +9,7 @@ Utilities to manage channel data persistence and retrieval.
99

1010
[dependencies]
1111
bitcoin = "0.26"
12-
lightning = { version = "0.0.12", path = "../lightning" }
12+
lightning = { version = "0.0.13", path = "../lightning" }
1313
libc = "0.2"
1414

1515
[target.'cfg(windows)'.dependencies]
@@ -20,4 +20,4 @@ version = "0.26"
2020
features = ["bitcoinconsensus"]
2121

2222
[dev-dependencies]
23-
lightning = { version = "0.0.12", path = "../lightning", features = ["_test_utils"] }
23+
lightning = { version = "0.0.13", 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.12"
3+
version = "0.0.13"
44
authors = ["Matt Corallo"]
55
license = "Apache-2.0"
66
repository = "https://github.com/rust-bitcoin/rust-lightning/"

0 commit comments

Comments
 (0)