mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 07:17:40 +01:00
Merge pull request #835 from TheBlueMatt/2021-03-0.0.13
Bump Version to 0.0.13
This commit is contained in:
commit
8a91bd92e1
6 changed files with 14 additions and 14 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "background-processor"
|
||||
version = "0.1.0"
|
||||
name = "lightning-background-processor"
|
||||
version = "0.0.13"
|
||||
authors = ["Valentine Wallace <vwallace@protonmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
|
@ -8,8 +8,8 @@ edition = "2018"
|
|||
|
||||
[dependencies]
|
||||
bitcoin = "0.26"
|
||||
lightning = { version = "0.0.12", path = "../lightning", features = ["allow_wallclock_use"] }
|
||||
lightning-persister = { version = "0.0.1", path = "../lightning-persister" }
|
||||
lightning = { version = "0.0.13", path = "../lightning", features = ["allow_wallclock_use"] }
|
||||
lightning-persister = { version = "0.0.13", path = "../lightning-persister" }
|
||||
|
||||
[dev-dependencies]
|
||||
lightning = { version = "0.0.12", path = "../lightning", features = ["_test_utils"] }
|
||||
lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }
|
||||
|
|
|
@ -268,7 +268,7 @@ mod tests {
|
|||
loop {
|
||||
let log_entries = nodes[0].logger.lines.lock().unwrap();
|
||||
let desired_log = "Calling manager's timer_chan_freshness_every_min".to_string();
|
||||
if log_entries.get(&("background_processor".to_string(), desired_log)).is_some() {
|
||||
if log_entries.get(&("lightning_background_processor".to_string(), desired_log)).is_some() {
|
||||
break
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lightning-block-sync"
|
||||
version = "0.0.1"
|
||||
version = "0.0.13"
|
||||
authors = ["Jeffrey Czyz", "Matt Corallo"]
|
||||
license = "Apache-2.0"
|
||||
edition = "2018"
|
||||
|
@ -14,7 +14,7 @@ rpc-client = [ "serde", "serde_json", "chunked_transfer" ]
|
|||
|
||||
[dependencies]
|
||||
bitcoin = "0.26"
|
||||
lightning = { version = "0.0.12", path = "../lightning" }
|
||||
lightning = { version = "0.0.13", path = "../lightning" }
|
||||
tokio = { version = "1.0", features = [ "io-util", "net" ], optional = true }
|
||||
serde = { version = "1.0", features = ["derive"], optional = true }
|
||||
serde_json = { version = "1.0", optional = true }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lightning-net-tokio"
|
||||
version = "0.0.5"
|
||||
version = "0.0.13"
|
||||
authors = ["Matt Corallo"]
|
||||
license = "Apache-2.0"
|
||||
edition = "2018"
|
||||
|
@ -11,7 +11,7 @@ For Rust-Lightning clients which wish to make direct connections to Lightning P2
|
|||
|
||||
[dependencies]
|
||||
bitcoin = "0.26"
|
||||
lightning = { version = "0.0.12", path = "../lightning" }
|
||||
lightning = { version = "0.0.13", path = "../lightning" }
|
||||
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "sync", "net", "time" ] }
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lightning-persister"
|
||||
version = "0.0.1"
|
||||
version = "0.0.13"
|
||||
authors = ["Valentine Wallace", "Matt Corallo"]
|
||||
license = "Apache-2.0"
|
||||
description = """
|
||||
|
@ -9,7 +9,7 @@ Utilities to manage channel data persistence and retrieval.
|
|||
|
||||
[dependencies]
|
||||
bitcoin = "0.26"
|
||||
lightning = { version = "0.0.12", path = "../lightning" }
|
||||
lightning = { version = "0.0.13", path = "../lightning" }
|
||||
libc = "0.2"
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
|
@ -20,4 +20,4 @@ version = "0.26"
|
|||
features = ["bitcoinconsensus"]
|
||||
|
||||
[dev-dependencies]
|
||||
lightning = { version = "0.0.12", path = "../lightning", features = ["_test_utils"] }
|
||||
lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lightning"
|
||||
version = "0.0.12"
|
||||
version = "0.0.13"
|
||||
authors = ["Matt Corallo"]
|
||||
license = "Apache-2.0"
|
||||
repository = "https://github.com/rust-bitcoin/rust-lightning/"
|
||||
|
|
Loading…
Add table
Reference in a new issue