From: Matt Corallo <649246+TheBlueMatt@users.noreply.github.com> Date: Tue, 9 Mar 2021 20:57:07 +0000 (+0000) Subject: Merge pull request #835 from TheBlueMatt/2021-03-0.0.13 X-Git-Tag: v0.0.13 X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=rust-lightning;a=commitdiff_plain;h=8a91bd92e1950b2567c02e5063d6e69aa0fa9773;hp=c896461319b71ef3356ab72d9e886437d09cf79b Merge pull request #835 from TheBlueMatt/2021-03-0.0.13 Bump Version to 0.0.13 --- diff --git a/background-processor/Cargo.toml b/background-processor/Cargo.toml index 1a4dc488..9870ef29 100644 --- a/background-processor/Cargo.toml +++ b/background-processor/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "background-processor" -version = "0.1.0" +name = "lightning-background-processor" +version = "0.0.13" authors = ["Valentine Wallace "] 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"] } diff --git a/background-processor/src/lib.rs b/background-processor/src/lib.rs index 1976962b..f6c2dbfc 100644 --- a/background-processor/src/lib.rs +++ b/background-processor/src/lib.rs @@ -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 } } diff --git a/lightning-block-sync/Cargo.toml b/lightning-block-sync/Cargo.toml index c454de39..968e500e 100644 --- a/lightning-block-sync/Cargo.toml +++ b/lightning-block-sync/Cargo.toml @@ -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 } diff --git a/lightning-net-tokio/Cargo.toml b/lightning-net-tokio/Cargo.toml index 587fe1b1..2a6f3dae 100644 --- a/lightning-net-tokio/Cargo.toml +++ b/lightning-net-tokio/Cargo.toml @@ -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] diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index fa71dc0d..8eb889dd 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -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"] } diff --git a/lightning/Cargo.toml b/lightning/Cargo.toml index f02813bf..dac35c70 100644 --- a/lightning/Cargo.toml +++ b/lightning/Cargo.toml @@ -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/"