Skip to content

Commit 716539e

Browse files
authored
Merge pull request #1535 from TheBlueMatt/2022-06-108-ugh
Cut 0.0.108
2 parents bfe4660 + deac430 commit 716539e

File tree

8 files changed

+32
-20
lines changed

8 files changed

+32
-20
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 0.0.108 - 2022-06-10
2+
3+
## Bug Fixes
4+
* Fixed `lightning-background-processor` build in release mode.
5+
6+
In total, this release features 9 files changed, 120 insertions, 74
7+
deletions in 5 commits from 4 authors, in alphabetical order:
8+
* Elias Rohrer
9+
* Matt Corallo
10+
* Max Fang
11+
* Viktor Tigerström
12+
113
# 0.0.107 - 2022-06-08
214

315
## API Updates

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.107"
3+
version = "0.0.108"
44
authors = ["Valentine Wallace <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "http://github.com/lightningdevkit/rust-lightning"
@@ -15,10 +15,10 @@ rustdoc-args = ["--cfg", "docsrs"]
1515

1616
[dependencies]
1717
bitcoin = "0.28.1"
18-
lightning = { version = "0.0.107", path = "../lightning", features = ["std"] }
19-
lightning-rapid-gossip-sync = { version = "0.0.107", path = "../lightning-rapid-gossip-sync" }
18+
lightning = { version = "0.0.108", path = "../lightning", features = ["std"] }
19+
lightning-rapid-gossip-sync = { version = "0.0.108", path = "../lightning-rapid-gossip-sync" }
2020

2121
[dev-dependencies]
22-
lightning = { version = "0.0.107", path = "../lightning", features = ["_test_utils"] }
23-
lightning-invoice = { version = "0.15.0", path = "../lightning-invoice" }
24-
lightning-persister = { version = "0.0.107", path = "../lightning-persister" }
22+
lightning = { version = "0.0.108", path = "../lightning", features = ["_test_utils"] }
23+
lightning-invoice = { version = "0.16.0", path = "../lightning-invoice" }
24+
lightning-persister = { version = "0.0.108", path = "../lightning-persister" }

lightning-block-sync/Cargo.toml

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

2020
[dependencies]
2121
bitcoin = "0.28.1"
22-
lightning = { version = "0.0.107", path = "../lightning" }
22+
lightning = { version = "0.0.108", path = "../lightning" }
2323
futures = { version = "0.3" }
2424
tokio = { version = "1.0", features = [ "io-util", "net", "time" ], optional = true }
2525
serde = { version = "1.0", features = ["derive"], optional = true }

lightning-invoice/Cargo.toml

+3-3
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.15.0"
4+
version = "0.16.0"
55
authors = ["Sebastian Geisler <[email protected]>"]
66
documentation = "https://docs.rs/lightning-invoice/"
77
license = "MIT OR Apache-2.0"
@@ -20,13 +20,13 @@ std = ["bitcoin_hashes/std", "num-traits/std", "lightning/std", "bech32/std"]
2020

2121
[dependencies]
2222
bech32 = { version = "0.8", default-features = false }
23-
lightning = { version = "0.0.107", path = "../lightning", default-features = false }
23+
lightning = { version = "0.0.108", path = "../lightning", default-features = false }
2424
secp256k1 = { version = "0.22", default-features = false, features = ["recovery", "alloc"] }
2525
num-traits = { version = "0.2.8", default-features = false }
2626
bitcoin_hashes = { version = "0.10", default-features = false }
2727
hashbrown = { version = "0.11", optional = true }
2828
core2 = { version = "0.3.0", default-features = false, optional = true }
2929

3030
[dev-dependencies]
31-
lightning = { version = "0.0.107", path = "../lightning", default-features = false, features = ["_test_utils"] }
31+
lightning = { version = "0.0.108", path = "../lightning", default-features = false, features = ["_test_utils"] }
3232
hex = "0.4"

lightning-net-tokio/Cargo.toml

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

1717
[dependencies]
1818
bitcoin = "0.28.1"
19-
lightning = { version = "0.0.107", path = "../lightning" }
19+
lightning = { version = "0.0.108", path = "../lightning" }
2020
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "sync", "net", "time" ] }
2121

2222
[dev-dependencies]

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.107"
3+
version = "0.0.108"
44
authors = ["Valentine Wallace", "Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning/"
@@ -17,11 +17,11 @@ _bench_unstable = ["lightning/_bench_unstable"]
1717

1818
[dependencies]
1919
bitcoin = "0.28.1"
20-
lightning = { version = "0.0.107", path = "../lightning" }
20+
lightning = { version = "0.0.108", path = "../lightning" }
2121
libc = "0.2"
2222

2323
[target.'cfg(windows)'.dependencies]
2424
winapi = { version = "0.3", features = ["winbase"] }
2525

2626
[dev-dependencies]
27-
lightning = { version = "0.0.107", path = "../lightning", features = ["_test_utils"] }
27+
lightning = { version = "0.0.108", path = "../lightning", features = ["_test_utils"] }

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.107"
3+
version = "0.0.108"
44
authors = ["Arik Sosman <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -13,8 +13,8 @@ Utility to process gossip routing data from Rapid Gossip Sync Server.
1313
_bench_unstable = []
1414

1515
[dependencies]
16-
lightning = { version = "0.0.107", path = "../lightning" }
16+
lightning = { version = "0.0.108", path = "../lightning" }
1717
bitcoin = { version = "0.28.1", default-features = false }
1818

1919
[dev-dependencies]
20-
lightning = { version = "0.0.107", path = "../lightning", features = ["_test_utils"] }
20+
lightning = { version = "0.0.108", path = "../lightning", features = ["_test_utils"] }

lightning/Cargo.toml

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

0 commit comments

Comments
 (0)