From 708d3c3ded0adfcd9948c2a86b9f041d2ef8e34f Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 15 Jan 2025 18:12:48 +0000 Subject: [PATCH 1/2] Bump crate versions to 0.1.0/invoice 0.33.0/dns-resolver 0.2 Sadly, dns-resolver got uploaded as 0.1.0 without a -beta1 tag (and yanked), and thus we release it here as 0.2.0. --- lightning-background-processor/Cargo.toml | 12 ++++++------ lightning-block-sync/Cargo.toml | 6 +++--- lightning-custom-message/Cargo.toml | 4 ++-- lightning-dns-resolver/Cargo.toml | 8 ++++---- lightning-invoice/Cargo.toml | 4 ++-- lightning-liquidity/Cargo.toml | 16 ++++++++-------- lightning-net-tokio/Cargo.toml | 6 +++--- lightning-persister/Cargo.toml | 6 +++--- lightning-rapid-gossip-sync/Cargo.toml | 6 +++--- lightning-transaction-sync/Cargo.toml | 6 +++--- lightning-types/Cargo.toml | 2 +- lightning/Cargo.toml | 8 ++++---- 12 files changed, 42 insertions(+), 42 deletions(-) diff --git a/lightning-background-processor/Cargo.toml b/lightning-background-processor/Cargo.toml index d34ec5304e6..6fa936b4cb4 100644 --- a/lightning-background-processor/Cargo.toml +++ b/lightning-background-processor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-background-processor" -version = "0.1.0-beta1" +version = "0.1.0" authors = ["Valentine Wallace "] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning" @@ -23,14 +23,14 @@ default = ["std"] bitcoin = { version = "0.32.2", default-features = false } bitcoin_hashes = { version = "0.14.0", default-features = false } bitcoin-io = { version = "0.1.2", default-features = false } -lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false } -lightning-rapid-gossip-sync = { version = "0.1.0-beta1", path = "../lightning-rapid-gossip-sync", default-features = false } +lightning = { version = "0.1.0", path = "../lightning", default-features = false } +lightning-rapid-gossip-sync = { version = "0.1.0", 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.1.0-beta1", path = "../lightning", features = ["_test_utils"] } -lightning-invoice = { version = "0.33.0-beta1", path = "../lightning-invoice" } -lightning-persister = { version = "0.1.0-beta1", path = "../lightning-persister" } +lightning = { version = "0.1.0", path = "../lightning", features = ["_test_utils"] } +lightning-invoice = { version = "0.33.0", path = "../lightning-invoice" } +lightning-persister = { version = "0.1.0", path = "../lightning-persister" } [lints] workspace = true diff --git a/lightning-block-sync/Cargo.toml b/lightning-block-sync/Cargo.toml index 80506cc92fd..6c4ab1c45e7 100644 --- a/lightning-block-sync/Cargo.toml +++ b/lightning-block-sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-block-sync" -version = "0.1.0-beta1" +version = "0.1.0" 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.1.0-beta1", path = "../lightning" } +lightning = { version = "0.1.0", 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.1.0-beta1", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.1.0", 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 daf8638399c..1395ea8b98f 100644 --- a/lightning-custom-message/Cargo.toml +++ b/lightning-custom-message/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-custom-message" -version = "0.1.0-beta1" +version = "0.1.0" 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.1.0-beta1", path = "../lightning" } +lightning = { version = "0.1.0", path = "../lightning" } [lints] workspace = true diff --git a/lightning-dns-resolver/Cargo.toml b/lightning-dns-resolver/Cargo.toml index 194fbdf02b9..5180a32ed43 100644 --- a/lightning-dns-resolver/Cargo.toml +++ b/lightning-dns-resolver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-dns-resolver" -version = "0.1.0" +version = "0.2.0" authors = ["Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning/" @@ -8,12 +8,12 @@ description = "A crate which implements DNSSEC resolution for lightning clients edition = "2021" [dependencies] -lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false } -lightning-types = { version = "0.2.0-beta1", path = "../lightning-types", default-features = false } +lightning = { version = "0.1.0", path = "../lightning", default-features = false } +lightning-types = { version = "0.2.0", path = "../lightning-types", default-features = false } dnssec-prover = { version = "0.6", default-features = false, features = [ "std", "tokio" ] } tokio = { version = "1.0", default-features = false, features = ["rt"] } [dev-dependencies] bitcoin = { version = "0.32" } tokio = { version = "1.0", default-features = false, features = ["macros", "time"] } -lightning = { version = "0.1.0-beta1", path = "../lightning", features = ["dnssec", "_test_utils"] } +lightning = { version = "0.1.0", path = "../lightning", features = ["dnssec", "_test_utils"] } diff --git a/lightning-invoice/Cargo.toml b/lightning-invoice/Cargo.toml index f46e1c4928c..ff8d88c5f63 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.33.0-beta1" +version = "0.33.0" authors = ["Sebastian Geisler "] documentation = "https://docs.rs/lightning-invoice/" license = "MIT OR Apache-2.0" @@ -19,7 +19,7 @@ std = [] [dependencies] bech32 = { version = "0.11.0", default-features = false } -lightning-types = { version = "0.2.0-beta1", path = "../lightning-types", default-features = false } +lightning-types = { version = "0.2.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"] } diff --git a/lightning-liquidity/Cargo.toml b/lightning-liquidity/Cargo.toml index a90f89a05b4..ed229b8b69a 100644 --- a/lightning-liquidity/Cargo.toml +++ b/lightning-liquidity/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-liquidity" -version = "0.1.0-beta1" +version = "0.1.0" authors = ["John Cantrell ", "Elias Rohrer "] homepage = "https://lightningdevkit.org/" license = "MIT OR Apache-2.0" @@ -19,9 +19,9 @@ std = ["lightning/std"] backtrace = ["dep:backtrace"] [dependencies] -lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false } -lightning-types = { version = "0.2.0-beta1", path = "../lightning-types", default-features = false } -lightning-invoice = { version = "0.33.0-beta1", path = "../lightning-invoice", default-features = false, features = ["serde"] } +lightning = { version = "0.1.0", path = "../lightning", default-features = false } +lightning-types = { version = "0.2.0", path = "../lightning-types", default-features = false } +lightning-invoice = { version = "0.33.0", path = "../lightning-invoice", default-features = false, features = ["serde"] } bitcoin = { version = "0.32.2", default-features = false, features = ["serde"] } @@ -31,10 +31,10 @@ serde_json = "1.0" backtrace = { version = "0.3", optional = true } [dev-dependencies] -lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false, features = ["_test_utils"] } -lightning-invoice = { version = "0.33.0-beta1", path = "../lightning-invoice", default-features = false, features = ["serde", "std"] } -lightning-persister = { version = "0.1.0-beta1", path = "../lightning-persister", default-features = false } -lightning-background-processor = { version = "0.1.0-beta1", path = "../lightning-background-processor", default-features = false, features = ["std"] } +lightning = { version = "0.1.0", path = "../lightning", default-features = false, features = ["_test_utils"] } +lightning-invoice = { version = "0.33.0", path = "../lightning-invoice", default-features = false, features = ["serde", "std"] } +lightning-persister = { version = "0.1.0", path = "../lightning-persister", default-features = false } +lightning-background-processor = { version = "0.1.0", path = "../lightning-background-processor", default-features = false, features = ["std"] } proptest = "1.0.0" tokio = { version = "1.35", default-features = false, features = [ "rt-multi-thread", "time", "sync", "macros" ] } diff --git a/lightning-net-tokio/Cargo.toml b/lightning-net-tokio/Cargo.toml index b897d42dac5..efc51126c13 100644 --- a/lightning-net-tokio/Cargo.toml +++ b/lightning-net-tokio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-net-tokio" -version = "0.1.0-beta1" +version = "0.1.0" 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.1.0-beta1", path = "../lightning" } +lightning = { version = "0.1.0", 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.1.0-beta1", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.1.0", path = "../lightning", features = ["_test_utils"] } [lints] workspace = true diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 1f8b497ae09..5863b0d3a19 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-persister" -version = "0.1.0-beta1" +version = "0.1.0" 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.1.0-beta1", path = "../lightning" } +lightning = { version = "0.1.0", 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.1.0-beta1", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.1.0", 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 4fdd33f88d7..bbd23b41325 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.1.0-beta1" +version = "0.1.0" authors = ["Arik Sosman "] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning" @@ -14,7 +14,7 @@ default = ["std"] std = ["bitcoin-io/std", "bitcoin_hashes/std"] [dependencies] -lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false } +lightning = { version = "0.1.0", path = "../lightning", default-features = false } bitcoin = { version = "0.32.2", default-features = false } bitcoin_hashes = { version = "0.14.0", default-features = false } bitcoin-io = { version = "0.1.2", default-features = false } @@ -23,7 +23,7 @@ bitcoin-io = { version = "0.1.2", default-features = false } criterion = { version = "0.4", optional = true, default-features = false } [dev-dependencies] -lightning = { version = "0.1.0-beta1", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.1.0", path = "../lightning", features = ["_test_utils"] } [lints] workspace = true diff --git a/lightning-transaction-sync/Cargo.toml b/lightning-transaction-sync/Cargo.toml index 71922c92fbb..8256a44ded5 100644 --- a/lightning-transaction-sync/Cargo.toml +++ b/lightning-transaction-sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-transaction-sync" -version = "0.1.0-beta1" +version = "0.1.0" 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.1.0-beta1", path = "../lightning", default-features = false, features = ["std"] } +lightning = { version = "0.1.0", path = "../lightning", default-features = false, features = ["std"] } lightning-macros = { version = "0.1", path = "../lightning-macros", default-features = false } bitcoin = { version = "0.32.2", default-features = false } futures = { version = "0.3", optional = true } @@ -31,7 +31,7 @@ esplora-client = { version = "0.11", default-features = false, optional = true } electrum-client = { version = "0.21.0", optional = true } [dev-dependencies] -lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false, features = ["std", "_test_utils"] } +lightning = { version = "0.1.0", path = "../lightning", default-features = false, features = ["std", "_test_utils"] } tokio = { version = "1.35.0", features = ["macros"] } [target.'cfg(not(target_os = "windows"))'.dev-dependencies] diff --git a/lightning-types/Cargo.toml b/lightning-types/Cargo.toml index 6adeb561ca0..d7f622ddb2d 100644 --- a/lightning-types/Cargo.toml +++ b/lightning-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-types" -version = "0.2.0-beta1" +version = "0.2.0" 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 bbb60c523b9..3e46c996147 100644 --- a/lightning/Cargo.toml +++ b/lightning/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning" -version = "0.1.0-beta1" +version = "0.1.0" authors = ["Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning/" @@ -33,8 +33,8 @@ grind_signatures = [] default = ["std", "grind_signatures"] [dependencies] -lightning-types = { version = "0.2.0-beta1", path = "../lightning-types", default-features = false } -lightning-invoice = { version = "0.33.0-beta1", path = "../lightning-invoice", default-features = false } +lightning-types = { version = "0.2.0", path = "../lightning-types", default-features = false } +lightning-invoice = { version = "0.33.0", path = "../lightning-invoice", default-features = false } bech32 = { version = "0.11.0", default-features = false } bitcoin = { version = "0.32.2", default-features = false, features = ["secp-recovery"] } @@ -50,7 +50,7 @@ libm = { version = "0.2", default-features = false } [dev-dependencies] regex = "1.5.6" -lightning-types = { version = "0.2.0-beta1", path = "../lightning-types", features = ["_test_utils"] } +lightning-types = { version = "0.2.0", path = "../lightning-types", features = ["_test_utils"] } [dev-dependencies.bitcoin] version = "0.32.2" From 0241f6e8c2b485516f399b388b35f15d5dace99c Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 15 Jan 2025 22:01:14 +0000 Subject: [PATCH 2/2] Set release date for 0.1, plus some text about the milestone --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3400ab642b2..a35f38d05a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ -# 0.1 - Jan XXX, 2025 - XXX +# 0.1 - Jan 15, 2025 - "Human Readable Version Numbers" + +The LDK 0.1 release represents an important milestone for the LDK project. While +there are certainly many important features which are still being built, the LDK +project has come a long way, and the LDK project is happy with the quality of +the features included in this release. Thus, the project will begin doing patch +releases to fix bugs in prior versions as new features continue to ship in new +minor versions. ## API Updates * The `lightning-liquidity` crate has been moved into the `rust-lightning`