Bump versions to 0.0.13 across the board
authorMatt Corallo <git@bluematt.me>
Mon, 8 Mar 2021 23:50:35 +0000 (18:50 -0500)
committerMatt Corallo <git@bluematt.me>
Tue, 9 Mar 2021 19:11:11 +0000 (14:11 -0500)
We also skip having different versions for different subcrates,
since that is confusing.

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

index 84fb7919f1cdef3a6b4bf1aa1556e78c70c53946..9870ef291ed06206a28cddae702933d230b0661b 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-background-processor"
-version = "0.0.1"
+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"] }
index c454de395e27d1c5bb95034ca5f5a6318c134ca6..968e500ef4940041ce19c2daffd8b2d8afb7c8b1 100644 (file)
@@ -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 }
index 587fe1b12a913798c5cf6e2511a82f1f4f9336ef..2a6f3daee2fc931d5fe65c5dc257bfc72ac941cc 100644 (file)
@@ -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]
index fa71dc0d4dd9e9e0ac67e0acfd0014abd2aa8215..8eb889dd0d217fc4f0185a08fc997ec29ace1d54 100644 (file)
@@ -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"] }
index f02813bfd3c2bbfa64365aef65f128cf77ec130c..dac35c70bf5bf1ee5d621f74c73cfac5017f1486 100644 (file)
@@ -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/"