Merge pull request #909 from TheBlueMatt/2021-04-0.0.14 v0.0.14
authorMatt Corallo <649246+TheBlueMatt@users.noreply.github.com>
Tue, 4 May 2021 02:14:03 +0000 (02:14 +0000)
committerGitHub <noreply@github.com>
Tue, 4 May 2021 02:14:03 +0000 (02:14 +0000)
Bump versions to 0.0.14, lightning-invoice 0.5

lightning-background-processor/Cargo.toml
lightning-block-sync/Cargo.toml
lightning-invoice/Cargo.toml
lightning-net-tokio/Cargo.toml
lightning-persister/Cargo.toml
lightning/Cargo.toml

index eec9da19015980dd22605af72e948420f6193b2a..c4c1d45b7e00ada04e981973756b31026e5ded04 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-background-processor"
-version = "0.0.13"
+version = "0.0.14"
 authors = ["Valentine Wallace <vwallace@protonmail.com>"]
 license = "MIT OR Apache-2.0"
 repository = "http://github.com/rust-bitcoin/rust-lightning"
@@ -11,9 +11,9 @@ edition = "2018"
 
 [dependencies]
 bitcoin = "0.26"
-lightning = { version = "0.0.13", path = "../lightning", features = ["allow_wallclock_use"] }
-lightning-persister = { version = "0.0.13", path = "../lightning-persister" }
+lightning = { version = "0.0.14", path = "../lightning", features = ["allow_wallclock_use"] }
+lightning-persister = { version = "0.0.14", path = "../lightning-persister" }
 
 [dev-dependencies]
-lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.14", path = "../lightning", features = ["_test_utils"] }
 
index ac750bcc473f4b2c704231f127455eccfff45177..6125874d963eadea1c5be3bc905a0540abe6f030 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-block-sync"
-version = "0.0.13"
+version = "0.0.14"
 authors = ["Jeffrey Czyz", "Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "http://github.com/rust-bitcoin/rust-lightning"
@@ -15,7 +15,7 @@ rpc-client = [ "serde", "serde_json", "chunked_transfer" ]
 
 [dependencies]
 bitcoin = "0.26"
-lightning = { version = "0.0.13", path = "../lightning" }
+lightning = { version = "0.0.14", 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 }
index 75d9755ad3fd85c8ae152f2ef0e55380b1b2135d..ebfc9e3953405d3de9d750b9251bd2c963e664ce 100644 (file)
@@ -1,7 +1,7 @@
 [package]
 name = "lightning-invoice"
 description = "Data structures to parse and serialize BOLT11 lightning invoices"
-version = "0.4.0"
+version = "0.5.0"
 authors = ["Sebastian Geisler <sgeisler@wh2.tu-dresden.de>"]
 documentation = "https://docs.rs/lightning-invoice/"
 license = "MIT OR Apache-2.0"
@@ -10,13 +10,13 @@ readme = "README.md"
 
 [dependencies]
 bech32 = "0.7"
-lightning = { version = "0.0.13", path = "../lightning" }
+lightning = { version = "0.0.14", path = "../lightning" }
 secp256k1 = { version = "0.20", features = ["recovery"] }
 num-traits = "0.2.8"
 bitcoin_hashes = "0.9.4"
 
 [dev-dependencies]
-lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.14", path = "../lightning", features = ["_test_utils"] }
 
 [lib]
 crate-type = ["cdylib", "rlib"]
index b5eba8a7ccea5553629e7faa9bdca6bc98716a24..6f2493d1762dd1f0da5865ad42642b1f48c63d0d 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-net-tokio"
-version = "0.0.13"
+version = "0.0.14"
 authors = ["Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/rust-bitcoin/rust-lightning/"
@@ -12,7 +12,7 @@ edition = "2018"
 
 [dependencies]
 bitcoin = "0.26"
-lightning = { version = "0.0.13", path = "../lightning" }
+lightning = { version = "0.0.14", path = "../lightning" }
 tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "sync", "net", "time" ] }
 
 [dev-dependencies]
index 6b69e9afe28b1d6ab435ba1fcffa9e08a0cce926..7bf00404372f66a683ad888432e4c3e0190f0028 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-persister"
-version = "0.0.13"
+version = "0.0.14"
 authors = ["Valentine Wallace", "Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/rust-bitcoin/rust-lightning/"
@@ -13,11 +13,11 @@ unstable = ["lightning/unstable"]
 
 [dependencies]
 bitcoin = "0.26"
-lightning = { version = "0.0.13", path = "../lightning" }
+lightning = { version = "0.0.14", path = "../lightning" }
 libc = "0.2"
 
 [target.'cfg(windows)'.dependencies]
 winapi = { version = "0.3", features = ["winbase"] }
 
 [dev-dependencies]
-lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.14", path = "../lightning", features = ["_test_utils"] }
index 73be5fff34da17f17dca0b213587418cf2bdbf08..0decf1c3b7d35a053000908ac5fa2e6843dac0b9 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning"
-version = "0.0.13"
+version = "0.0.14"
 authors = ["Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/rust-bitcoin/rust-lightning/"