Skip to content

Commit 71e6995

Browse files
authored
Merge pull request #417 from TheBlueMatt/2019-12-ver-bump
Bump to 0.0.10
2 parents be677dc + 1e52786 commit 71e6995

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Rust-Lightning, not Rusty's Lightning!
55

66
Documentation can be found at [docs.rs](https://docs.rs/lightning/)
77

8-
Currently somewhere near 40% towards usable, published to see if there is any
8+
Currently somewhere near 50% towards usable, published to see if there is any
99
real interest from folks in using a lightning rust library.
1010

1111
The goal is to provide a full-featured but also incredibly flexible lightning

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ stdin_fuzz = []
1919
[dependencies]
2020
afl = { version = "0.4", optional = true }
2121
lightning = { path = "../lightning", features = ["fuzztarget"] }
22-
bitcoin = { version = "0.20", features = ["fuzztarget"] }
22+
bitcoin = { version = "0.21", features = ["fuzztarget"] }
2323
bitcoin_hashes = { version = "0.7", features = ["fuzztarget"] }
2424
hex = "0.3"
2525
honggfuzz = { version = "0.5", optional = true }

fuzz/travis-fuzz.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ rm *_target.rs
1313
popd
1414

1515
cargo install --force honggfuzz
16+
HFUZZ_BUILD_ARGS="--features honggfuzz_fuzz" cargo hfuzz build
1617
for TARGET in src/bin/*.rs; do
1718
FILENAME=$(basename $TARGET)
1819
FILE="${FILENAME%.*}"

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.0.1"
3+
version = "0.0.2"
44
authors = ["Matt Corallo"]
55
license = "Apache-2.0"
66
description = """
@@ -9,9 +9,9 @@ For Rust-Lightning clients which wish to make direct connections to Lightning P2
99
"""
1010

1111
[dependencies]
12-
bitcoin = "0.20"
12+
bitcoin = "0.21"
1313
bitcoin_hashes = "0.7"
14-
lightning = { version = "0.0.9", path = "../lightning" }
14+
lightning = { version = "0.0.10", path = "../lightning" }
1515
secp256k1 = "0.15"
1616
tokio-codec = "0.1"
1717
futures = "0.1"

lightning/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"
3-
version = "0.0.9"
3+
version = "0.0.10"
44
authors = ["Matt Corallo"]
55
license = "Apache-2.0"
66
repository = "https://github.com/rust-bitcoin/rust-lightning/"
@@ -22,12 +22,12 @@ max_level_info = []
2222
max_level_debug = []
2323

2424
[dependencies]
25-
bitcoin = "0.20"
25+
bitcoin = "0.21"
2626
bitcoin_hashes = "0.7"
2727
secp256k1 = "0.15"
2828

2929
[dev-dependencies.bitcoin]
30-
version = "0.20"
30+
version = "0.21"
3131
features = ["bitcoinconsensus"]
3232

3333
[dev-dependencies]

0 commit comments

Comments
 (0)