]> git.bitcoin.ninja Git - rust-lightning/commitdiff
Update versions to 0.0.124 and invoice 0.32 types 0.1 release 2024-08-124-relnotes
authorMatt Corallo <git@bluematt.me>
Fri, 30 Aug 2024 15:05:24 +0000 (15:05 +0000)
committerMatt Corallo <git@bluematt.me>
Tue, 3 Sep 2024 18:18:52 +0000 (18:18 +0000)
lightning-background-processor/Cargo.toml
lightning-block-sync/Cargo.toml
lightning-custom-message/Cargo.toml
lightning-invoice/Cargo.toml
lightning-net-tokio/Cargo.toml
lightning-persister/Cargo.toml
lightning-rapid-gossip-sync/Cargo.toml
lightning-transaction-sync/Cargo.toml
lightning-types/Cargo.toml
lightning/Cargo.toml

index 6a875cc9c62a13aeb764f6434b0179931c2e93c7..70c19c5c76dd20ea9ad01cf9fb0e64a31def8846 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-background-processor"
-version = "0.0.124-rc1"
+version = "0.0.124"
 authors = ["Valentine Wallace <vwallace@protonmail.com>"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -21,14 +21,14 @@ default = ["std"]
 
 [dependencies]
 bitcoin = { version = "0.32.2", default-features = false }
-lightning = { version = "0.0.124-rc1", path = "../lightning", default-features = false }
-lightning-rapid-gossip-sync = { version = "0.0.124-rc1", path = "../lightning-rapid-gossip-sync", default-features = false }
+lightning = { version = "0.0.124", path = "../lightning", default-features = false }
+lightning-rapid-gossip-sync = { version = "0.0.124", path = "../lightning-rapid-gossip-sync", default-features = false }
 
 [dev-dependencies]
 tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] }
-lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
-lightning-invoice = { version = "0.32.0-rc1", path = "../lightning-invoice" }
-lightning-persister = { version = "0.0.124-rc1", path = "../lightning-persister" }
+lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
+lightning-invoice = { version = "0.32.0", path = "../lightning-invoice" }
+lightning-persister = { version = "0.0.124", path = "../lightning-persister" }
 
 [lints]
 workspace = true
index e4a4584f334879782d0b0534b34a9c09b50fb851..38ec56a51b7004c89e21cae349e17a88c7d26e0f 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-block-sync"
-version = "0.0.124-rc1"
+version = "0.0.124"
 authors = ["Jeffrey Czyz", "Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -19,13 +19,13 @@ rpc-client = [ "serde_json", "chunked_transfer" ]
 
 [dependencies]
 bitcoin = "0.32.2"
-lightning = { version = "0.0.124-rc1", path = "../lightning" }
+lightning = { version = "0.0.124", path = "../lightning" }
 tokio = { version = "1.35", features = [ "io-util", "net", "time", "rt" ], optional = true }
 serde_json = { version = "1.0", optional = true }
 chunked_transfer = { version = "1.4", optional = true }
 
 [dev-dependencies]
-lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
 tokio = { version = "1.35", features = [ "macros", "rt" ] }
 
 [lints]
index bf0298e36619c56858ae43dbfc2f67fc2d942cf6..d3eaf125520d06f6f41b278a4062ea61f5d16bbc 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-custom-message"
-version = "0.0.124-rc1"
+version = "0.0.124"
 authors = ["Jeffrey Czyz"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -15,7 +15,7 @@ rustdoc-args = ["--cfg", "docsrs"]
 
 [dependencies]
 bitcoin = "0.32.2"
-lightning = { version = "0.0.124-rc1", path = "../lightning" }
+lightning = { version = "0.0.124", path = "../lightning" }
 
 [lints]
 workspace = true
index 73e6ddad06016d07b405b1ed12b590625a95bf6f..054113fe13ae45e83cd19d5c25646bcc0b690737 100644 (file)
@@ -1,7 +1,7 @@
 [package]
 name = "lightning-invoice"
 description = "Data structures to parse and serialize BOLT11 lightning invoices"
-version = "0.32.0-rc1"
+version = "0.32.0"
 authors = ["Sebastian Geisler <sgeisler@wh2.tu-dresden.de>"]
 documentation = "https://docs.rs/lightning-invoice/"
 license = "MIT OR Apache-2.0"
@@ -19,7 +19,7 @@ std = []
 
 [dependencies]
 bech32 = { version = "0.9.1", default-features = false }
-lightning-types = { version = "0.1.0-rc1", path = "../lightning-types", default-features = false }
+lightning-types = { version = "0.1.0", path = "../lightning-types", default-features = false }
 serde = { version = "1.0.118", optional = true }
 bitcoin = { version = "0.32.2", default-features = false, features = ["secp-recovery"] }
 
index e1c6a328bc115cfa92037d0c5ea0b45fad95e66e..9df6594b063e0b97f64bc8b159bd8812ec0f7d39 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-net-tokio"
-version = "0.0.124-rc1"
+version = "0.0.124"
 authors = ["Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/lightningdevkit/rust-lightning/"
@@ -16,12 +16,12 @@ rustdoc-args = ["--cfg", "docsrs"]
 
 [dependencies]
 bitcoin = "0.32.2"
-lightning = { version = "0.0.124-rc1", path = "../lightning" }
+lightning = { version = "0.0.124", path = "../lightning" }
 tokio = { version = "1.35", features = [ "rt", "sync", "net", "time" ] }
 
 [dev-dependencies]
 tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
-lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
 
 [lints]
 workspace = true
index fa303ef2f3c45ae3adf5f4b4d63bf8440dfd7026..4007f14cfc19153d17e43e18bdbc235662b76ba2 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-persister"
-version = "0.0.124-rc1"
+version = "0.0.124"
 authors = ["Valentine Wallace", "Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -15,7 +15,7 @@ rustdoc-args = ["--cfg", "docsrs"]
 
 [dependencies]
 bitcoin = "0.32.2"
-lightning = { version = "0.0.124-rc1", path = "../lightning" }
+lightning = { version = "0.0.124", path = "../lightning" }
 
 [target.'cfg(windows)'.dependencies]
 windows-sys = { version = "0.48.0", default-features = false, features = ["Win32_Storage_FileSystem", "Win32_Foundation"] }
@@ -24,7 +24,7 @@ windows-sys = { version = "0.48.0", default-features = false, features = ["Win32
 criterion = { version = "0.4", optional = true, default-features = false }
 
 [dev-dependencies]
-lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
 bitcoin = { version = "0.32.2", default-features = false }
 
 [lints]
index cfa80c4694f9ae7ec4d786c9a8aa914a4e154ffb..ef28f2943788fe204d110386f3a934e9473813bd 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-rapid-gossip-sync"
-version = "0.0.124-rc1"
+version = "0.0.124"
 authors = ["Arik Sosman <git@arik.io>"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -14,14 +14,14 @@ default = ["std"]
 std = []
 
 [dependencies]
-lightning = { version = "0.0.124-rc1", path = "../lightning", default-features = false }
+lightning = { version = "0.0.124", path = "../lightning", default-features = false }
 bitcoin = { version = "0.32.2", default-features = false }
 
 [target.'cfg(ldk_bench)'.dependencies]
 criterion = { version = "0.4", optional = true, default-features = false }
 
 [dev-dependencies]
-lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
 
 [lints]
 workspace = true
index 6dd2faadfdac7eb2d099082215f0c32adfc66240..bca6e0a7c0402288e44fad32c2deb31fa3e057ab 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-transaction-sync"
-version = "0.0.124-rc1"
+version = "0.0.124"
 authors = ["Elias Rohrer"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -23,7 +23,7 @@ electrum = ["electrum-client"]
 async-interface = []
 
 [dependencies]
-lightning = { version = "0.0.124-rc1", path = "../lightning", default-features = false, features = ["std"] }
+lightning = { version = "0.0.124", path = "../lightning", default-features = false, features = ["std"] }
 bitcoin = { version = "0.32.2", default-features = false }
 bdk-macros = "0.6"
 futures = { version = "0.3", optional = true }
@@ -31,7 +31,7 @@ esplora-client = { version = "0.9", default-features = false, optional = true }
 electrum-client = { version = "0.21.0", optional = true }
 
 [dev-dependencies]
-lightning = { version = "0.0.124-rc1", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
+lightning = { version = "0.0.124", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
 tokio = { version = "1.35.0", features = ["full"] }
 
 [target.'cfg(not(target_os = "windows"))'.dev-dependencies]
index 560ceb4eed888bacf844c75c130e863763be20a5..9e8feedf6efc4def5563b074765f70311f778b02 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-types"
-version = "0.1.0-rc1"
+version = "0.1.0"
 authors = ["Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/lightningdevkit/rust-lightning/"
index 2f8d284116bed1eefba619646c61d3768c41bb43..8fa85f7a2fb1fb8320cb81f5c042bf9a45e66438 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning"
-version = "0.0.124-rc1"
+version = "0.0.124"
 authors = ["Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/lightningdevkit/rust-lightning/"
@@ -38,8 +38,8 @@ grind_signatures = []
 default = ["std", "grind_signatures"]
 
 [dependencies]
-lightning-types = { version = "0.1.0-rc1", path = "../lightning-types", default-features = false }
-lightning-invoice = { version = "0.32.0-rc1", path = "../lightning-invoice", default-features = false }
+lightning-types = { version = "0.1.0", path = "../lightning-types", default-features = false }
+lightning-invoice = { version = "0.32.0", path = "../lightning-invoice", default-features = false }
 
 bech32 = { version = "0.9.1", default-features = false }
 bitcoin = { version = "0.32.2", default-features = false, features = ["secp-recovery"] }
@@ -53,7 +53,7 @@ libm = { version = "0.2", optional = true, default-features = false }
 
 [dev-dependencies]
 regex = "1.5.6"
-lightning-types = { version = "0.1.0-rc1", path = "../lightning-types", features = ["_test_utils"] }
+lightning-types = { version = "0.1.0", path = "../lightning-types", features = ["_test_utils"] }
 
 [dev-dependencies.bitcoin]
 version = "0.32.2"