Skip to content

Commit 367a2cc

Browse files
authored
Merge pull request #1095 from TheBlueMatt/2021-09-0.0.101
Bump Crate versions to 0.0.101 (and invoice to 0.9)
2 parents 5811f5b + 43fe3d5 commit 367a2cc

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-background-processor"
3-
version = "0.0.100"
3+
version = "0.0.101"
44
authors = ["Valentine Wallace <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "http://github.com/rust-bitcoin/rust-lightning"
@@ -11,9 +11,9 @@ edition = "2018"
1111

1212
[dependencies]
1313
bitcoin = "0.27"
14-
lightning = { version = "0.0.100", path = "../lightning", features = ["allow_wallclock_use"] }
15-
lightning-persister = { version = "0.0.100", path = "../lightning-persister" }
14+
lightning = { version = "0.0.101", path = "../lightning", features = ["allow_wallclock_use"] }
15+
lightning-persister = { version = "0.0.101", path = "../lightning-persister" }
1616

1717
[dev-dependencies]
18-
lightning = { version = "0.0.100", path = "../lightning", features = ["_test_utils"] }
18+
lightning = { version = "0.0.101", path = "../lightning", features = ["_test_utils"] }
1919

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.100"
3+
version = "0.0.101"
44
authors = ["Jeffrey Czyz", "Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "http://github.com/rust-bitcoin/rust-lightning"
@@ -15,7 +15,7 @@ rpc-client = [ "serde", "serde_json", "chunked_transfer" ]
1515

1616
[dependencies]
1717
bitcoin = "0.27"
18-
lightning = { version = "0.0.100", path = "../lightning" }
18+
lightning = { version = "0.0.101", path = "../lightning" }
1919
tokio = { version = "1.0", features = [ "io-util", "net", "time" ], optional = true }
2020
serde = { version = "1.0", features = ["derive"], optional = true }
2121
serde_json = { version = "1.0", 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.8.0"
4+
version = "0.9.0"
55
authors = ["Sebastian Geisler <[email protected]>"]
66
documentation = "https://docs.rs/lightning-invoice/"
77
license = "MIT OR Apache-2.0"
@@ -10,11 +10,11 @@ readme = "README.md"
1010

1111
[dependencies]
1212
bech32 = "0.8"
13-
lightning = { version = "0.0.100", path = "../lightning" }
13+
lightning = { version = "0.0.101", path = "../lightning" }
1414
secp256k1 = { version = "0.20", features = ["recovery"] }
1515
num-traits = "0.2.8"
1616
bitcoin_hashes = "0.10"
1717

1818
[dev-dependencies]
1919
hex = "0.3"
20-
lightning = { version = "0.0.100", path = "../lightning", features = ["_test_utils"] }
20+
lightning = { version = "0.0.101", path = "../lightning", features = ["_test_utils"] }

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.100"
3+
version = "0.0.101"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rust-bitcoin/rust-lightning/"
@@ -12,7 +12,7 @@ edition = "2018"
1212

1313
[dependencies]
1414
bitcoin = "0.27"
15-
lightning = { version = "0.0.100", path = "../lightning" }
15+
lightning = { version = "0.0.101", path = "../lightning" }
1616
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "sync", "net", "time" ] }
1717

1818
[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.100"
3+
version = "0.0.101"
44
authors = ["Valentine Wallace", "Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rust-bitcoin/rust-lightning/"
@@ -13,11 +13,11 @@ unstable = ["lightning/unstable"]
1313

1414
[dependencies]
1515
bitcoin = "0.27"
16-
lightning = { version = "0.0.100", path = "../lightning" }
16+
lightning = { version = "0.0.101", path = "../lightning" }
1717
libc = "0.2"
1818

1919
[target.'cfg(windows)'.dependencies]
2020
winapi = { version = "0.3", features = ["winbase"] }
2121

2222
[dev-dependencies]
23-
lightning = { version = "0.0.100", path = "../lightning", features = ["_test_utils"] }
23+
lightning = { version = "0.0.101", 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.100"
3+
version = "0.0.101"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rust-bitcoin/rust-lightning/"

0 commit comments

Comments
 (0)