diff --git a/Cargo.toml b/Cargo.toml index 3644c52f..3008644f 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 8373e967..ab4145fc 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.