Skip to content

Commit 010f054

Browse files
committed
Bump crates to -beta1
This bumps `lightning` to 0.2-beta1, `lightning-invoice` to 0.34-beta1, `lightning-types` to 0.3-beta1, and `lightning-dns-resolver` to 0.3-beta1. While `lightning-types` really doesn't entirely merit a version bump here (we almost entirely just added features, which isn't a breaking change), we removed a few redundant feature flag modifying methods, which technically broke semver. Hopefully the next version will be able to avoid that. As a result of the `lightning-types` bump, `lightning-invoice` also gets bumped, though it would otherwise not need it.
1 parent d3b3d1e commit 010f054

File tree

13 files changed

+48
-48
lines changed

13 files changed

+48
-48
lines changed

lightning-background-processor/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-background-processor"
3-
version = "0.2.0+git"
3+
version = "0.2.0-beta1"
44
authors = ["Valentine Wallace <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -22,17 +22,17 @@ std = ["lightning/std", "lightning-liquidity/std", "bitcoin-io/std", "bitcoin_ha
2222
bitcoin = { version = "0.32.2", default-features = false }
2323
bitcoin_hashes = { version = "0.14.0", default-features = false }
2424
bitcoin-io = { version = "0.1.2", default-features = false }
25-
lightning = { version = "0.2.0", path = "../lightning", default-features = false }
26-
lightning-rapid-gossip-sync = { version = "0.2.0", path = "../lightning-rapid-gossip-sync", default-features = false }
27-
lightning-liquidity = { version = "0.2.0", path = "../lightning-liquidity", default-features = false }
25+
lightning = { version = "0.2.0-beta1", path = "../lightning", default-features = false }
26+
lightning-rapid-gossip-sync = { version = "0.2.0-beta1", path = "../lightning-rapid-gossip-sync", default-features = false }
27+
lightning-liquidity = { version = "0.2.0-beta1", path = "../lightning-liquidity", default-features = false }
2828
possiblyrandom = { version = "0.2", path = "../possiblyrandom", default-features = false }
2929

3030
[dev-dependencies]
3131
tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] }
32-
lightning = { version = "0.2.0", path = "../lightning", features = ["_test_utils"] }
33-
lightning-invoice = { version = "0.34.0", path = "../lightning-invoice" }
34-
lightning-liquidity = { version = "0.2.0", path = "../lightning-liquidity", default-features = false, features = ["_test_utils"] }
35-
lightning-persister = { version = "0.2.0", path = "../lightning-persister" }
32+
lightning = { version = "0.2.0-beta1", path = "../lightning", features = ["_test_utils"] }
33+
lightning-invoice = { version = "0.34.0-beta1", path = "../lightning-invoice" }
34+
lightning-liquidity = { version = "0.2.0-beta1", path = "../lightning-liquidity", default-features = false, features = ["_test_utils"] }
35+
lightning-persister = { version = "0.2.0-beta1", path = "../lightning-persister" }
3636

3737
[lints]
3838
workspace = true

lightning-block-sync/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-block-sync"
3-
version = "0.2.0+git"
3+
version = "0.2.0-beta1"
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.2.0", path = "../lightning" }
22+
lightning = { version = "0.2.0-beta1", 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.2.0", path = "../lightning", features = ["_test_utils"] }
28+
lightning = { version = "0.2.0-beta1", path = "../lightning", features = ["_test_utils"] }
2929
tokio = { version = "1.35", features = [ "macros", "rt" ] }
3030

3131
[lints]

lightning-custom-message/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-custom-message"
3-
version = "0.2.0+git"
3+
version = "0.2.0-beta1"
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.2.0", path = "../lightning" }
18+
lightning = { version = "0.2.0-beta1", path = "../lightning" }
1919

2020
[lints]
2121
workspace = true

lightning-dns-resolver/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[package]
22
name = "lightning-dns-resolver"
3-
version = "0.3.0+git"
3+
version = "0.3.0-beta1"
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.2.0", path = "../lightning", default-features = false }
12-
lightning-types = { version = "0.3.0", path = "../lightning-types", default-features = false }
11+
lightning = { version = "0.2.0-beta1", path = "../lightning", default-features = false }
12+
lightning-types = { version = "0.3.0-beta1", 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.2.0", path = "../lightning", features = ["dnssec", "_test_utils"] }
19+
lightning = { version = "0.2.0-beta1", path = "../lightning", features = ["dnssec", "_test_utils"] }

lightning-invoice/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.34.0+git"
4+
version = "0.34.0-beta1"
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.3.0", path = "../lightning-types", default-features = false }
22+
lightning-types = { version = "0.3.0-beta1", path = "../lightning-types", default-features = false }
2323
serde = { version = "1.0", optional = true, default-features = false, features = ["alloc"] }
2424
bitcoin = { version = "0.32.2", default-features = false, features = ["secp-recovery"] }
2525

lightning-liquidity/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-liquidity"
3-
version = "0.2.0+git"
3+
version = "0.2.0-beta1"
44
authors = ["John Cantrell <[email protected]>", "Elias Rohrer <[email protected]>"]
55
homepage = "https://lightningdevkit.org/"
66
license = "MIT OR Apache-2.0"
@@ -21,10 +21,10 @@ backtrace = ["dep:backtrace"]
2121
_test_utils = []
2222

2323
[dependencies]
24-
lightning = { version = "0.2.0", path = "../lightning", default-features = false }
25-
lightning-types = { version = "0.3.0", path = "../lightning-types", default-features = false }
26-
lightning-invoice = { version = "0.34.0", path = "../lightning-invoice", default-features = false, features = ["serde"] }
27-
lightning-macros = { version = "0.2", path = "../lightning-macros" }
24+
lightning = { version = "0.2.0-beta1", path = "../lightning", default-features = false }
25+
lightning-types = { version = "0.3.0-beta1", path = "../lightning-types", default-features = false }
26+
lightning-invoice = { version = "0.34.0-beta1", path = "../lightning-invoice", default-features = false, features = ["serde"] }
27+
lightning-macros = { version = "0.2.0-beta1", path = "../lightning-macros" }
2828

2929
bitcoin = { version = "0.32.2", default-features = false, features = ["serde"] }
3030

@@ -34,9 +34,9 @@ serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
3434
backtrace = { version = "0.3", optional = true }
3535

3636
[dev-dependencies]
37-
lightning = { version = "0.2.0", path = "../lightning", default-features = false, features = ["_test_utils"] }
38-
lightning-invoice = { version = "0.34.0", path = "../lightning-invoice", default-features = false, features = ["serde", "std"] }
39-
lightning-persister = { version = "0.2.0", path = "../lightning-persister", default-features = false }
37+
lightning = { version = "0.2.0-beta1", path = "../lightning", default-features = false, features = ["_test_utils"] }
38+
lightning-invoice = { version = "0.34.0-beta1", path = "../lightning-invoice", default-features = false, features = ["serde", "std"] }
39+
lightning-persister = { version = "0.2.0-beta1", path = "../lightning-persister", default-features = false }
4040

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

lightning-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-macros"
3-
version = "0.2.0+git"
3+
version = "0.2.0-beta1"
44
authors = ["Elias Rohrer"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning/"

lightning-net-tokio/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-net-tokio"
3-
version = "0.2.0+git"
3+
version = "0.2.0-beta1"
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.2.0", path = "../lightning" }
19+
lightning = { version = "0.2.0-beta1", 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.2.0", path = "../lightning", features = ["_test_utils"] }
24+
lightning = { version = "0.2.0-beta1", path = "../lightning", features = ["_test_utils"] }
2525

2626
[lints]
2727
workspace = true

lightning-persister/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-persister"
3-
version = "0.2.0+git"
3+
version = "0.2.0-beta1"
44
authors = ["Valentine Wallace", "Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -18,7 +18,7 @@ tokio = ["dep:tokio"]
1818

1919
[dependencies]
2020
bitcoin = "0.32.2"
21-
lightning = { version = "0.2.0", path = "../lightning" }
21+
lightning = { version = "0.2.0-beta1", path = "../lightning" }
2222
tokio = { version = "1.35", optional = true, default-features = false, features = ["rt-multi-thread"] }
2323

2424
[target.'cfg(windows)'.dependencies]
@@ -28,7 +28,7 @@ windows-sys = { version = "0.48.0", default-features = false, features = ["Win32
2828
criterion = { version = "0.4", optional = true, default-features = false }
2929

3030
[dev-dependencies]
31-
lightning = { version = "0.2.0", path = "../lightning", features = ["_test_utils"] }
31+
lightning = { version = "0.2.0-beta1", path = "../lightning", features = ["_test_utils"] }
3232
bitcoin = { version = "0.32.2", default-features = false }
3333
tokio = { version = "1.35", default-features = false, features = ["macros"] }
3434

lightning-rapid-gossip-sync/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-rapid-gossip-sync"
3-
version = "0.2.0+git"
3+
version = "0.2.0-beta1"
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.2.0", path = "../lightning", default-features = false }
17+
lightning = { version = "0.2.0-beta1", 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.2.0", path = "../lightning", features = ["_test_utils"] }
26+
lightning = { version = "0.2.0-beta1", path = "../lightning", features = ["_test_utils"] }
2727

2828
[lints]
2929
workspace = true

0 commit comments

Comments
 (0)