]> git.bitcoin.ninja Git - rust-lightning/commitdiff
Bump versions to rc1 2024-08-124rc
authorMatt Corallo <git@bluematt.me>
Thu, 29 Aug 2024 19:39:22 +0000 (19:39 +0000)
committerMatt Corallo <git@bluematt.me>
Thu, 29 Aug 2024 19:40:09 +0000 (19:40 +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 aafe58b8f3c25f24d1924d91d9a0ee68f3bce199..6a875cc9c62a13aeb764f6434b0179931c2e93c7 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-background-processor"
-version = "0.0.124-beta"
+version = "0.0.124-rc1"
 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-beta", path = "../lightning", default-features = false }
-lightning-rapid-gossip-sync = { version = "0.0.124-beta", path = "../lightning-rapid-gossip-sync", 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 }
 
 [dev-dependencies]
 tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] }
-lightning = { version = "0.0.124-beta", path = "../lightning", features = ["_test_utils"] }
-lightning-invoice = { version = "0.32.0-beta", path = "../lightning-invoice" }
-lightning-persister = { version = "0.0.124-beta", path = "../lightning-persister" }
+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" }
 
 [lints]
 workspace = true
index 5b7256c6b84180e338831efdd4579c9c40fc6c38..e4a4584f334879782d0b0534b34a9c09b50fb851 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-block-sync"
-version = "0.0.124-beta"
+version = "0.0.124-rc1"
 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-beta", path = "../lightning" }
+lightning = { version = "0.0.124-rc1", 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-beta", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
 tokio = { version = "1.35", features = [ "macros", "rt" ] }
 
 [lints]
index ff3dcdadec58ef5b229d99e701cb235a139370e9..bf0298e36619c56858ae43dbfc2f67fc2d942cf6 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-custom-message"
-version = "0.0.124-beta"
+version = "0.0.124-rc1"
 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-beta", path = "../lightning" }
+lightning = { version = "0.0.124-rc1", path = "../lightning" }
 
 [lints]
 workspace = true
index dfb3fac4c8850b2c02989c8a6b6d5562b602d25c..73e6ddad06016d07b405b1ed12b590625a95bf6f 100644 (file)
@@ -1,7 +1,7 @@
 [package]
 name = "lightning-invoice"
 description = "Data structures to parse and serialize BOLT11 lightning invoices"
-version = "0.32.0-beta"
+version = "0.32.0-rc1"
 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-beta", path = "../lightning-types", default-features = false }
+lightning-types = { version = "0.1.0-rc1", 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 d4c7d6d4ffdcb2bca202e8fadf454e912892a5b9..e1c6a328bc115cfa92037d0c5ea0b45fad95e66e 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-net-tokio"
-version = "0.0.124-beta"
+version = "0.0.124-rc1"
 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-beta", path = "../lightning" }
+lightning = { version = "0.0.124-rc1", 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-beta", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
 
 [lints]
 workspace = true
index d72e19347b0673c3b88b261cbdab588781e723d3..fa303ef2f3c45ae3adf5f4b4d63bf8440dfd7026 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-persister"
-version = "0.0.124-beta"
+version = "0.0.124-rc1"
 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-beta", path = "../lightning" }
+lightning = { version = "0.0.124-rc1", 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-beta", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
 bitcoin = { version = "0.32.2", default-features = false }
 
 [lints]
index a51d2cfd18296d552e90a550bdd051b945fd1f40..cfa80c4694f9ae7ec4d786c9a8aa914a4e154ffb 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-rapid-gossip-sync"
-version = "0.0.124-beta"
+version = "0.0.124-rc1"
 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-beta", path = "../lightning", default-features = false }
+lightning = { version = "0.0.124-rc1", 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-beta", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
 
 [lints]
 workspace = true
index 433ae028e41b2aceea61c93b8ff4d5f02fd1ad0f..6dd2faadfdac7eb2d099082215f0c32adfc66240 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-transaction-sync"
-version = "0.0.124-beta"
+version = "0.0.124-rc1"
 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-beta", path = "../lightning", default-features = false, features = ["std"] }
+lightning = { version = "0.0.124-rc1", 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-beta", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
+lightning = { version = "0.0.124-rc1", 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 7936318800c786de71caf8001528a41c77b93060..560ceb4eed888bacf844c75c130e863763be20a5 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-types"
-version = "0.1.0-beta"
+version = "0.1.0-rc1"
 authors = ["Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/lightningdevkit/rust-lightning/"
index 5d7c6e987361d0746aef69ff580788eb9aa122a0..2f8d284116bed1eefba619646c61d3768c41bb43 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning"
-version = "0.0.124-beta"
+version = "0.0.124-rc1"
 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-beta", path = "../lightning-types", default-features = false }
-lightning-invoice = { version = "0.32.0-beta", path = "../lightning-invoice", default-features = false }
+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 }
 
 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-beta", path = "../lightning-types", features = ["_test_utils"] }
+lightning-types = { version = "0.1.0-rc1", path = "../lightning-types", features = ["_test_utils"] }
 
 [dev-dependencies.bitcoin]
 version = "0.32.2"