update README to reflect 0.10, bump version to republish
This commit is contained in:
parent
9a498ad5e1
commit
b7ec971541
|
@ -1,7 +1,7 @@
|
|||
|
||||
[package]
|
||||
name = "bitcoin"
|
||||
version = "0.10.4"
|
||||
version = "0.10.5"
|
||||
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
|
||||
license = "CC0-1.0"
|
||||
homepage = "https://github.com/apoelstra/rust-bitcoin/"
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue