Skip to content

Commit d378023

Browse files
committed
Merge pull request #3543 from TheBlueMatt/2025-01-0.1-version
Bump crate versions to 0.1.0/invoice 0.33.0/dns-resolver 0.2
2 parents 2a642f8 + 0241f6e commit d378023

File tree

13 files changed

+50
-43
lines changed

13 files changed

+50
-43
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
# 0.1 - Jan XXX, 2025 - XXX
1+
# 0.1 - Jan 15, 2025 - "Human Readable Version Numbers"
2+
3+
The LDK 0.1 release represents an important milestone for the LDK project. While
4+
there are certainly many important features which are still being built, the LDK
5+
project has come a long way, and the LDK project is happy with the quality of
6+
the features included in this release. Thus, the project will begin doing patch
7+
releases to fix bugs in prior versions as new features continue to ship in new
8+
minor versions.
29

310
## API Updates
411
* The `lightning-liquidity` crate has been moved into the `rust-lightning`

lightning-background-processor/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-background-processor"
3-
version = "0.1.0-beta1"
3+
version = "0.1.0"
44
authors = ["Valentine Wallace <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -23,14 +23,14 @@ default = ["std"]
2323
bitcoin = { version = "0.32.2", default-features = false }
2424
bitcoin_hashes = { version = "0.14.0", default-features = false }
2525
bitcoin-io = { version = "0.1.2", default-features = false }
26-
lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false }
27-
lightning-rapid-gossip-sync = { version = "0.1.0-beta1", path = "../lightning-rapid-gossip-sync", default-features = false }
26+
lightning = { version = "0.1.0", path = "../lightning", default-features = false }
27+
lightning-rapid-gossip-sync = { version = "0.1.0", path = "../lightning-rapid-gossip-sync", default-features = false }
2828

2929
[dev-dependencies]
3030
tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] }
31-
lightning = { version = "0.1.0-beta1", path = "../lightning", features = ["_test_utils"] }
32-
lightning-invoice = { version = "0.33.0-beta1", path = "../lightning-invoice" }
33-
lightning-persister = { version = "0.1.0-beta1", path = "../lightning-persister" }
31+
lightning = { version = "0.1.0", path = "../lightning", features = ["_test_utils"] }
32+
lightning-invoice = { version = "0.33.0", path = "../lightning-invoice" }
33+
lightning-persister = { version = "0.1.0", path = "../lightning-persister" }
3434

3535
[lints]
3636
workspace = true

lightning-block-sync/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-block-sync"
3-
version = "0.1.0-beta1"
3+
version = "0.1.0"
44
authors = ["Jeffrey Czyz", "Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -19,13 +19,13 @@ rpc-client = [ "serde_json", "chunked_transfer" ]
1919

2020
[dependencies]
2121
bitcoin = "0.32.2"
22-
lightning = { version = "0.1.0-beta1", path = "../lightning" }
22+
lightning = { version = "0.1.0", path = "../lightning" }
2323
tokio = { version = "1.35", features = [ "io-util", "net", "time", "rt" ], optional = true }
2424
serde_json = { version = "1.0", optional = true }
2525
chunked_transfer = { version = "1.4", optional = true }
2626

2727
[dev-dependencies]
28-
lightning = { version = "0.1.0-beta1", path = "../lightning", features = ["_test_utils"] }
28+
lightning = { version = "0.1.0", path = "../lightning", features = ["_test_utils"] }
2929
tokio = { version = "1.35", features = [ "macros", "rt" ] }
3030

3131
[lints]

lightning-custom-message/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-custom-message"
3-
version = "0.1.0-beta1"
3+
version = "0.1.0"
44
authors = ["Jeffrey Czyz"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -15,7 +15,7 @@ rustdoc-args = ["--cfg", "docsrs"]
1515

1616
[dependencies]
1717
bitcoin = "0.32.2"
18-
lightning = { version = "0.1.0-beta1", path = "../lightning" }
18+
lightning = { version = "0.1.0", path = "../lightning" }
1919

2020
[lints]
2121
workspace = true

lightning-dns-resolver/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[package]
22
name = "lightning-dns-resolver"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning/"
77
description = "A crate which implements DNSSEC resolution for lightning clients over bLIP 32 using `tokio` and the `dnssec-prover` crate."
88
edition = "2021"
99

1010
[dependencies]
11-
lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false }
12-
lightning-types = { version = "0.2.0-beta1", path = "../lightning-types", default-features = false }
11+
lightning = { version = "0.1.0", path = "../lightning", default-features = false }
12+
lightning-types = { version = "0.2.0", path = "../lightning-types", default-features = false }
1313
dnssec-prover = { version = "0.6", default-features = false, features = [ "std", "tokio" ] }
1414
tokio = { version = "1.0", default-features = false, features = ["rt"] }
1515

1616
[dev-dependencies]
1717
bitcoin = { version = "0.32" }
1818
tokio = { version = "1.0", default-features = false, features = ["macros", "time"] }
19-
lightning = { version = "0.1.0-beta1", path = "../lightning", features = ["dnssec", "_test_utils"] }
19+
lightning = { version = "0.1.0", path = "../lightning", features = ["dnssec", "_test_utils"] }

lightning-invoice/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lightning-invoice"
33
description = "Data structures to parse and serialize BOLT11 lightning invoices"
4-
version = "0.33.0-beta1"
4+
version = "0.33.0"
55
authors = ["Sebastian Geisler <[email protected]>"]
66
documentation = "https://docs.rs/lightning-invoice/"
77
license = "MIT OR Apache-2.0"
@@ -19,7 +19,7 @@ std = []
1919

2020
[dependencies]
2121
bech32 = { version = "0.11.0", default-features = false }
22-
lightning-types = { version = "0.2.0-beta1", path = "../lightning-types", default-features = false }
22+
lightning-types = { version = "0.2.0", path = "../lightning-types", default-features = false }
2323
serde = { version = "1.0.118", optional = true }
2424
bitcoin = { version = "0.32.2", default-features = false, features = ["secp-recovery"] }
2525

lightning-liquidity/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-liquidity"
3-
version = "0.1.0-beta1"
3+
version = "0.1.0"
44
authors = ["John Cantrell <[email protected]>", "Elias Rohrer <[email protected]>"]
55
homepage = "https://lightningdevkit.org/"
66
license = "MIT OR Apache-2.0"
@@ -19,9 +19,9 @@ std = ["lightning/std"]
1919
backtrace = ["dep:backtrace"]
2020

2121
[dependencies]
22-
lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false }
23-
lightning-types = { version = "0.2.0-beta1", path = "../lightning-types", default-features = false }
24-
lightning-invoice = { version = "0.33.0-beta1", path = "../lightning-invoice", default-features = false, features = ["serde"] }
22+
lightning = { version = "0.1.0", path = "../lightning", default-features = false }
23+
lightning-types = { version = "0.2.0", path = "../lightning-types", default-features = false }
24+
lightning-invoice = { version = "0.33.0", path = "../lightning-invoice", default-features = false, features = ["serde"] }
2525

2626
bitcoin = { version = "0.32.2", default-features = false, features = ["serde"] }
2727

@@ -31,10 +31,10 @@ serde_json = "1.0"
3131
backtrace = { version = "0.3", optional = true }
3232

3333
[dev-dependencies]
34-
lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false, features = ["_test_utils"] }
35-
lightning-invoice = { version = "0.33.0-beta1", path = "../lightning-invoice", default-features = false, features = ["serde", "std"] }
36-
lightning-persister = { version = "0.1.0-beta1", path = "../lightning-persister", default-features = false }
37-
lightning-background-processor = { version = "0.1.0-beta1", path = "../lightning-background-processor", default-features = false, features = ["std"] }
34+
lightning = { version = "0.1.0", path = "../lightning", default-features = false, features = ["_test_utils"] }
35+
lightning-invoice = { version = "0.33.0", path = "../lightning-invoice", default-features = false, features = ["serde", "std"] }
36+
lightning-persister = { version = "0.1.0", path = "../lightning-persister", default-features = false }
37+
lightning-background-processor = { version = "0.1.0", path = "../lightning-background-processor", default-features = false, features = ["std"] }
3838

3939
proptest = "1.0.0"
4040
tokio = { version = "1.35", default-features = false, features = [ "rt-multi-thread", "time", "sync", "macros" ] }

lightning-net-tokio/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-net-tokio"
3-
version = "0.1.0-beta1"
3+
version = "0.1.0"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning/"
@@ -16,12 +16,12 @@ rustdoc-args = ["--cfg", "docsrs"]
1616

1717
[dependencies]
1818
bitcoin = "0.32.2"
19-
lightning = { version = "0.1.0-beta1", path = "../lightning" }
19+
lightning = { version = "0.1.0", path = "../lightning" }
2020
tokio = { version = "1.35", features = [ "rt", "sync", "net", "time" ] }
2121

2222
[dev-dependencies]
2323
tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
24-
lightning = { version = "0.1.0-beta1", path = "../lightning", features = ["_test_utils"] }
24+
lightning = { version = "0.1.0", path = "../lightning", features = ["_test_utils"] }
2525

2626
[lints]
2727
workspace = true

lightning-persister/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-persister"
3-
version = "0.1.0-beta1"
3+
version = "0.1.0"
44
authors = ["Valentine Wallace", "Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -15,7 +15,7 @@ rustdoc-args = ["--cfg", "docsrs"]
1515

1616
[dependencies]
1717
bitcoin = "0.32.2"
18-
lightning = { version = "0.1.0-beta1", path = "../lightning" }
18+
lightning = { version = "0.1.0", path = "../lightning" }
1919

2020
[target.'cfg(windows)'.dependencies]
2121
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
2424
criterion = { version = "0.4", optional = true, default-features = false }
2525

2626
[dev-dependencies]
27-
lightning = { version = "0.1.0-beta1", path = "../lightning", features = ["_test_utils"] }
27+
lightning = { version = "0.1.0", path = "../lightning", features = ["_test_utils"] }
2828
bitcoin = { version = "0.32.2", default-features = false }
2929

3030
[lints]

lightning-rapid-gossip-sync/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-rapid-gossip-sync"
3-
version = "0.1.0-beta1"
3+
version = "0.1.0"
44
authors = ["Arik Sosman <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -14,7 +14,7 @@ default = ["std"]
1414
std = ["bitcoin-io/std", "bitcoin_hashes/std"]
1515

1616
[dependencies]
17-
lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false }
17+
lightning = { version = "0.1.0", path = "../lightning", default-features = false }
1818
bitcoin = { version = "0.32.2", default-features = false }
1919
bitcoin_hashes = { version = "0.14.0", default-features = false }
2020
bitcoin-io = { version = "0.1.2", default-features = false }
@@ -23,7 +23,7 @@ bitcoin-io = { version = "0.1.2", default-features = false }
2323
criterion = { version = "0.4", optional = true, default-features = false }
2424

2525
[dev-dependencies]
26-
lightning = { version = "0.1.0-beta1", path = "../lightning", features = ["_test_utils"] }
26+
lightning = { version = "0.1.0", path = "../lightning", features = ["_test_utils"] }
2727

2828
[lints]
2929
workspace = true

lightning-transaction-sync/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-transaction-sync"
3-
version = "0.1.0-beta1"
3+
version = "0.1.0"
44
authors = ["Elias Rohrer"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -23,15 +23,15 @@ electrum = ["electrum-client"]
2323
async-interface = []
2424

2525
[dependencies]
26-
lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false, features = ["std"] }
26+
lightning = { version = "0.1.0", path = "../lightning", default-features = false, features = ["std"] }
2727
lightning-macros = { version = "0.1", path = "../lightning-macros", default-features = false }
2828
bitcoin = { version = "0.32.2", default-features = false }
2929
futures = { version = "0.3", optional = true }
3030
esplora-client = { version = "0.11", default-features = false, optional = true }
3131
electrum-client = { version = "0.21.0", optional = true }
3232

3333
[dev-dependencies]
34-
lightning = { version = "0.1.0-beta1", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
34+
lightning = { version = "0.1.0", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
3535
tokio = { version = "1.35.0", features = ["macros"] }
3636

3737
[target.'cfg(not(target_os = "windows"))'.dev-dependencies]

lightning-types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-types"
3-
version = "0.2.0-beta1"
3+
version = "0.2.0"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning/"

lightning/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning"
3-
version = "0.1.0-beta1"
3+
version = "0.1.0"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning/"
@@ -33,8 +33,8 @@ grind_signatures = []
3333
default = ["std", "grind_signatures"]
3434

3535
[dependencies]
36-
lightning-types = { version = "0.2.0-beta1", path = "../lightning-types", default-features = false }
37-
lightning-invoice = { version = "0.33.0-beta1", path = "../lightning-invoice", default-features = false }
36+
lightning-types = { version = "0.2.0", path = "../lightning-types", default-features = false }
37+
lightning-invoice = { version = "0.33.0", path = "../lightning-invoice", default-features = false }
3838

3939
bech32 = { version = "0.11.0", default-features = false }
4040
bitcoin = { version = "0.32.2", default-features = false, features = ["secp-recovery"] }
@@ -50,7 +50,7 @@ libm = { version = "0.2", default-features = false }
5050

5151
[dev-dependencies]
5252
regex = "1.5.6"
53-
lightning-types = { version = "0.2.0-beta1", path = "../lightning-types", features = ["_test_utils"] }
53+
lightning-types = { version = "0.2.0", path = "../lightning-types", features = ["_test_utils"] }
5454

5555
[dev-dependencies.bitcoin]
5656
version = "0.32.2"

0 commit comments

Comments
 (0)