Skip to content

Bump to 0.0.10 #417

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
1 change: 1 addition & 0 deletions fuzz/travis-fuzz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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%.*}"
Expand Down
6 changes: 3 additions & 3 deletions lightning-net-tokio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 = """
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions lightning/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/"
Expand All @@ -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]
Expand Down