Skip to content

Commit c9de257

Browse files
committed
Update versions to 0.0.124 and invoice 0.32 types 0.1 release
1 parent f52148f commit c9de257

File tree

10 files changed

+30
-30
lines changed

10 files changed

+30
-30
lines changed

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.0.124-rc1"
3+
version = "0.0.124"
44
authors = ["Valentine Wallace <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -21,14 +21,14 @@ default = ["std"]
2121

2222
[dependencies]
2323
bitcoin = { version = "0.32.2", default-features = false }
24-
lightning = { version = "0.0.124-rc1", path = "../lightning", default-features = false }
25-
lightning-rapid-gossip-sync = { version = "0.0.124-rc1", path = "../lightning-rapid-gossip-sync", default-features = false }
24+
lightning = { version = "0.0.124", path = "../lightning", default-features = false }
25+
lightning-rapid-gossip-sync = { version = "0.0.124", path = "../lightning-rapid-gossip-sync", default-features = false }
2626

2727
[dev-dependencies]
2828
tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] }
29-
lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
30-
lightning-invoice = { version = "0.32.0-rc1", path = "../lightning-invoice" }
31-
lightning-persister = { version = "0.0.124-rc1", path = "../lightning-persister" }
29+
lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
30+
lightning-invoice = { version = "0.32.0", path = "../lightning-invoice" }
31+
lightning-persister = { version = "0.0.124", path = "../lightning-persister" }
3232

3333
[lints]
3434
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.0.124-rc1"
3+
version = "0.0.124"
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.0.124-rc1", path = "../lightning" }
22+
lightning = { version = "0.0.124", 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.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
28+
lightning = { version = "0.0.124", 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.0.124-rc1"
3+
version = "0.0.124"
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.0.124-rc1", path = "../lightning" }
18+
lightning = { version = "0.0.124", path = "../lightning" }
1919

2020
[lints]
2121
workspace = true

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.32.0-rc1"
4+
version = "0.32.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.9.1", default-features = false }
22-
lightning-types = { version = "0.1.0-rc1", path = "../lightning-types", default-features = false }
22+
lightning-types = { version = "0.1.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-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.0.124-rc1"
3+
version = "0.0.124"
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.0.124-rc1", path = "../lightning" }
19+
lightning = { version = "0.0.124", 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.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
24+
lightning = { version = "0.0.124", 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.0.124-rc1"
3+
version = "0.0.124"
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.0.124-rc1", path = "../lightning" }
18+
lightning = { version = "0.0.124", 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.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
27+
lightning = { version = "0.0.124", 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.0.124-rc1"
3+
version = "0.0.124"
44
authors = ["Arik Sosman <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -14,14 +14,14 @@ default = ["std"]
1414
std = []
1515

1616
[dependencies]
17-
lightning = { version = "0.0.124-rc1", path = "../lightning", default-features = false }
17+
lightning = { version = "0.0.124", path = "../lightning", default-features = false }
1818
bitcoin = { version = "0.32.2", default-features = false }
1919

2020
[target.'cfg(ldk_bench)'.dependencies]
2121
criterion = { version = "0.4", optional = true, default-features = false }
2222

2323
[dev-dependencies]
24-
lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["_test_utils"] }
24+
lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
2525

2626
[lints]
2727
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.0.124-rc1"
3+
version = "0.0.124"
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.0.124-rc1", path = "../lightning", default-features = false, features = ["std"] }
26+
lightning = { version = "0.0.124", path = "../lightning", default-features = false, features = ["std"] }
2727
bitcoin = { version = "0.32.2", default-features = false }
2828
bdk-macros = "0.6"
2929
futures = { version = "0.3", optional = true }
3030
esplora-client = { version = "0.9", default-features = false, optional = true }
3131
electrum-client = { version = "0.21.0", optional = true }
3232

3333
[dev-dependencies]
34-
lightning = { version = "0.0.124-rc1", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
34+
lightning = { version = "0.0.124", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
3535
tokio = { version = "1.35.0", features = ["full"] }
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.1.0-rc1"
3+
version = "0.1.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.0.124-rc1"
3+
version = "0.0.124"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning/"
@@ -38,8 +38,8 @@ grind_signatures = []
3838
default = ["std", "grind_signatures"]
3939

4040
[dependencies]
41-
lightning-types = { version = "0.1.0-rc1", path = "../lightning-types", default-features = false }
42-
lightning-invoice = { version = "0.32.0-rc1", path = "../lightning-invoice", default-features = false }
41+
lightning-types = { version = "0.1.0", path = "../lightning-types", default-features = false }
42+
lightning-invoice = { version = "0.32.0", path = "../lightning-invoice", default-features = false }
4343

4444
bech32 = { version = "0.9.1", default-features = false }
4545
bitcoin = { version = "0.32.2", default-features = false, features = ["secp-recovery"] }
@@ -53,7 +53,7 @@ libm = { version = "0.2", optional = true, default-features = false }
5353

5454
[dev-dependencies]
5555
regex = "1.5.6"
56-
lightning-types = { version = "0.1.0-rc1", path = "../lightning-types", features = ["_test_utils"] }
56+
lightning-types = { version = "0.1.0", path = "../lightning-types", features = ["_test_utils"] }
5757

5858
[dev-dependencies.bitcoin]
5959
version = "0.32.2"

0 commit comments

Comments
 (0)