]> git.bitcoin.ninja Git - rust-lightning/commitdiff
Bump version numbers to 0.0.124-beta/invoice 0.32-beta 2024-08-124-beta
authorMatt Corallo <git@bluematt.me>
Tue, 20 Aug 2024 00:29:12 +0000 (00:29 +0000)
committerMatt Corallo <git@bluematt.me>
Tue, 20 Aug 2024 00:29:12 +0000 (00:29 +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 741e62438a17e9bfd1e5a4f154b08cf14c3c6851..aafe58b8f3c25f24d1924d91d9a0ee68f3bce199 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-background-processor"
-version = "0.0.123-beta"
+version = "0.0.124-beta"
 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.123-beta", path = "../lightning", default-features = false }
-lightning-rapid-gossip-sync = { version = "0.0.123-beta", path = "../lightning-rapid-gossip-sync", 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 }
 
 [dev-dependencies]
 tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] }
-lightning = { version = "0.0.123-beta", path = "../lightning", features = ["_test_utils"] }
-lightning-invoice = { version = "0.31.0-beta", path = "../lightning-invoice" }
-lightning-persister = { version = "0.0.123-beta", path = "../lightning-persister" }
+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" }
 
 [lints]
 workspace = true
index ecae20d807b2d907db2ba866d9259b516cc5b02b..5b7256c6b84180e338831efdd4579c9c40fc6c38 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-block-sync"
-version = "0.0.123-beta"
+version = "0.0.124-beta"
 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.123-beta", path = "../lightning" }
+lightning = { version = "0.0.124-beta", 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.123-beta", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.124-beta", path = "../lightning", features = ["_test_utils"] }
 tokio = { version = "1.35", features = [ "macros", "rt" ] }
 
 [lints]
index d3c2e57085e35b96671f98e895bd8a0d423515b2..ff3dcdadec58ef5b229d99e701cb235a139370e9 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-custom-message"
-version = "0.0.123-beta"
+version = "0.0.124-beta"
 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.123-beta", path = "../lightning" }
+lightning = { version = "0.0.124-beta", path = "../lightning" }
 
 [lints]
 workspace = true
index 2a5bc406b3325ed2edef5aaa50dae525f29152b6..dfb3fac4c8850b2c02989c8a6b6d5562b602d25c 100644 (file)
@@ -1,7 +1,7 @@
 [package]
 name = "lightning-invoice"
 description = "Data structures to parse and serialize BOLT11 lightning invoices"
-version = "0.31.0-beta"
+version = "0.32.0-beta"
 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", path = "../lightning-types", default-features = false }
+lightning-types = { version = "0.1.0-beta", 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 ede8cc0a73a2caae6d7a0fca9bc3bf7b1dd161ad..d4c7d6d4ffdcb2bca202e8fadf454e912892a5b9 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-net-tokio"
-version = "0.0.123-beta"
+version = "0.0.124-beta"
 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.123-beta", path = "../lightning" }
+lightning = { version = "0.0.124-beta", 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.123-beta", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.124-beta", path = "../lightning", features = ["_test_utils"] }
 
 [lints]
 workspace = true
index e315fb791b2bd0c3df37703708bf60dccf4b1c09..d72e19347b0673c3b88b261cbdab588781e723d3 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-persister"
-version = "0.0.123-beta"
+version = "0.0.124-beta"
 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.123-beta", path = "../lightning" }
+lightning = { version = "0.0.124-beta", 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.123-beta", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.124-beta", path = "../lightning", features = ["_test_utils"] }
 bitcoin = { version = "0.32.2", default-features = false }
 
 [lints]
index 425c2c97d9d941bc6cacc98ecb666de74ff21608..a51d2cfd18296d552e90a550bdd051b945fd1f40 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-rapid-gossip-sync"
-version = "0.0.123-beta"
+version = "0.0.124-beta"
 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.123-beta", path = "../lightning", default-features = false }
+lightning = { version = "0.0.124-beta", 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.123-beta", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.124-beta", path = "../lightning", features = ["_test_utils"] }
 
 [lints]
 workspace = true
index a53e04cc7ee1f1b2b33427c09e64aa9f89e7acc0..433ae028e41b2aceea61c93b8ff4d5f02fd1ad0f 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-transaction-sync"
-version = "0.0.123-beta"
+version = "0.0.124-beta"
 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.123-beta", path = "../lightning", default-features = false, features = ["std"] }
+lightning = { version = "0.0.124-beta", 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.123-beta", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
+lightning = { version = "0.0.124-beta", 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 9e8feedf6efc4def5563b074765f70311f778b02..7936318800c786de71caf8001528a41c77b93060 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-types"
-version = "0.1.0"
+version = "0.1.0-beta"
 authors = ["Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/lightningdevkit/rust-lightning/"
index d68b8c6433de18c941c7a8092f6d8d2cdeb9541d..5d7c6e987361d0746aef69ff580788eb9aa122a0 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning"
-version = "0.0.123-beta"
+version = "0.0.124-beta"
 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", path = "../lightning-types", default-features = false }
-lightning-invoice = { version = "0.31.0-beta", path = "../lightning-invoice", default-features = false }
+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 }
 
 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", path = "../lightning-types", features = ["_test_utils"] }
+lightning-types = { version = "0.1.0-beta", path = "../lightning-types", features = ["_test_utils"] }
 
 [dev-dependencies.bitcoin]
 version = "0.32.2"