From: Matt Corallo Date: Tue, 20 Aug 2024 00:29:12 +0000 (+0000) Subject: Bump version numbers to 0.0.124-beta/invoice 0.32-beta X-Git-Tag: v0.0.124-beta^2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=cd0ca28945a65cca5c1d8f806f4eb91c3d0c1c58;p=rust-lightning Bump version numbers to 0.0.124-beta/invoice 0.32-beta --- diff --git a/lightning-background-processor/Cargo.toml b/lightning-background-processor/Cargo.toml index 741e62438..aafe58b8f 100644 --- a/lightning-background-processor/Cargo.toml +++ b/lightning-background-processor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-background-processor" -version = "0.0.123-beta" +version = "0.0.124-beta" authors = ["Valentine Wallace "] 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 diff --git a/lightning-block-sync/Cargo.toml b/lightning-block-sync/Cargo.toml index ecae20d80..5b7256c6b 100644 --- a/lightning-block-sync/Cargo.toml +++ b/lightning-block-sync/Cargo.toml @@ -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] diff --git a/lightning-custom-message/Cargo.toml b/lightning-custom-message/Cargo.toml index d3c2e5708..ff3dcdade 100644 --- a/lightning-custom-message/Cargo.toml +++ b/lightning-custom-message/Cargo.toml @@ -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 diff --git a/lightning-invoice/Cargo.toml b/lightning-invoice/Cargo.toml index 2a5bc406b..dfb3fac4c 100644 --- a/lightning-invoice/Cargo.toml +++ b/lightning-invoice/Cargo.toml @@ -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 "] 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"] } diff --git a/lightning-net-tokio/Cargo.toml b/lightning-net-tokio/Cargo.toml index ede8cc0a7..d4c7d6d4f 100644 --- a/lightning-net-tokio/Cargo.toml +++ b/lightning-net-tokio/Cargo.toml @@ -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 diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index e315fb791..d72e19347 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -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] diff --git a/lightning-rapid-gossip-sync/Cargo.toml b/lightning-rapid-gossip-sync/Cargo.toml index 425c2c97d..a51d2cfd1 100644 --- a/lightning-rapid-gossip-sync/Cargo.toml +++ b/lightning-rapid-gossip-sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-rapid-gossip-sync" -version = "0.0.123-beta" +version = "0.0.124-beta" authors = ["Arik Sosman "] 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 diff --git a/lightning-transaction-sync/Cargo.toml b/lightning-transaction-sync/Cargo.toml index a53e04cc7..433ae028e 100644 --- a/lightning-transaction-sync/Cargo.toml +++ b/lightning-transaction-sync/Cargo.toml @@ -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] diff --git a/lightning-types/Cargo.toml b/lightning-types/Cargo.toml index 9e8feedf6..793631880 100644 --- a/lightning-types/Cargo.toml +++ b/lightning-types/Cargo.toml @@ -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/" diff --git a/lightning/Cargo.toml b/lightning/Cargo.toml index d68b8c643..5d7c6e987 100644 --- a/lightning/Cargo.toml +++ b/lightning/Cargo.toml @@ -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"