From b7ec971541ab79692d153b5329ed514b85b05b44 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Wed, 13 Dec 2017 21:20:16 +0000 Subject: [PATCH] update README to reflect 0.10, bump version to republish --- Cargo.toml | 2 +- README.md | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3644c52..3008644 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bitcoin" -version = "0.10.4" +version = "0.10.5" authors = ["Andrew Poelstra "] license = "CC0-1.0" homepage = "https://github.com/apoelstra/rust-bitcoin/" diff --git a/README.md b/README.md index 8373e96..ab4145f 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ To use rust-bitcoin, just add the following to your Cargo.toml. ```toml [dependencies] -bitcoin = "0.9" +bitcoin = "0.10" ``` # Known limitations @@ -43,6 +43,9 @@ based cryptocurrency such as Bitcoin it is critical that all parties are using the same rules to validate data, and this library is simply unable to implement the same rules as Core. +The script interpreter is now gated behind the `broken_consensus_code` flag +for this reason. + Given the complexity of both C++ and Rust, it is unlikely that this will ever be fixed, and there are no plans to do so. Of course, patches to fix specific consensus incompatibilities are welcome.