Merge pull request #417 from TheBlueMatt/2019-12-ver-bump
authorMatt Corallo <649246+TheBlueMatt@users.noreply.github.com>
Thu, 12 Dec 2019 16:45:18 +0000 (16:45 +0000)
committerGitHub <noreply@github.com>
Thu, 12 Dec 2019 16:45:18 +0000 (16:45 +0000)
Bump to 0.0.10

README.md
fuzz/Cargo.toml
fuzz/travis-fuzz.sh
lightning-net-tokio/Cargo.toml
lightning/Cargo.toml

index 460571f0070943da516720d588b386aa48d37b31..fd264c8c2d928459f3c98abd948372ff6f83880d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ Rust-Lightning, not Rusty's Lightning!
 
 Documentation can be found at [docs.rs](https://docs.rs/lightning/)
 
-Currently somewhere near 40% towards usable, published to see if there is any
+Currently somewhere near 50% towards usable, published to see if there is any
 real interest from folks in using a lightning rust library.
 
 The goal is to provide a full-featured but also incredibly flexible lightning
index 22a6e2156491e3445f7deeb48f318a10c94a9212..1cb7a8d6d925610e927b3c261ffbaa070dfd6131 100644 (file)
@@ -19,7 +19,7 @@ stdin_fuzz = []
 [dependencies]
 afl = { version = "0.4", optional = true }
 lightning = { path = "../lightning", features = ["fuzztarget"] }
-bitcoin = { version = "0.20", features = ["fuzztarget"] }
+bitcoin = { version = "0.21", features = ["fuzztarget"] }
 bitcoin_hashes = { version = "0.7", features = ["fuzztarget"] }
 hex = "0.3"
 honggfuzz = { version = "0.5", optional = true }
index 2c281d932c67d65d4db13c53de40e15a3328b285..5ec431d7ef1818ffccde8700fb23142bb9345a9e 100755 (executable)
@@ -13,6 +13,7 @@ rm *_target.rs
 popd
 
 cargo install --force honggfuzz
+HFUZZ_BUILD_ARGS="--features honggfuzz_fuzz" cargo hfuzz build
 for TARGET in src/bin/*.rs; do
        FILENAME=$(basename $TARGET)
        FILE="${FILENAME%.*}"
index f6fa03bdf24be15ec3082215c64c21da0fdb307b..1bd9805a7c901bdb609e82f43bb6ae8c7d04013b 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-net-tokio"
-version = "0.0.1"
+version = "0.0.2"
 authors = ["Matt Corallo"]
 license = "Apache-2.0"
 description = """
@@ -9,9 +9,9 @@ For Rust-Lightning clients which wish to make direct connections to Lightning P2
 """
 
 [dependencies]
-bitcoin = "0.20"
+bitcoin = "0.21"
 bitcoin_hashes = "0.7"
-lightning = { version = "0.0.9", path = "../lightning" }
+lightning = { version = "0.0.10", path = "../lightning" }
 secp256k1 = "0.15"
 tokio-codec = "0.1"
 futures = "0.1"
index 65d3f66eac948ea7c45914372a8f60aacfdda24d..341084fc393a7b0fc35822b1e67c0661f0ee42db 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning"
-version = "0.0.9"
+version = "0.0.10"
 authors = ["Matt Corallo"]
 license = "Apache-2.0"
 repository = "https://github.com/rust-bitcoin/rust-lightning/"
@@ -22,12 +22,12 @@ max_level_info = []
 max_level_debug = []
 
 [dependencies]
-bitcoin = "0.20"
+bitcoin = "0.21"
 bitcoin_hashes = "0.7"
 secp256k1 = "0.15"
 
 [dev-dependencies.bitcoin]
-version = "0.20"
+version = "0.21"
 features = ["bitcoinconsensus"]
 
 [dev-dependencies]