bump version number to 0.11

This commit is contained in:
Andrew Poelstra 2018-02-18 15:20:59 +00:00
parent 066c49305f
commit 740d9e6fde
2 changed files with 10 additions and 2 deletions

View File

@ -1,7 +1,7 @@
[package] [package]
name = "bitcoin" name = "bitcoin"
version = "0.10.9" version = "0.11.0"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"] authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
license = "CC0-1.0" license = "CC0-1.0"
homepage = "https://github.com/apoelstra/rust-bitcoin/" homepage = "https://github.com/apoelstra/rust-bitcoin/"
@ -23,7 +23,6 @@ broken_consensus_code = []
[dependencies] [dependencies]
byteorder = "1.1" byteorder = "1.1"
num = "0.1"
rand = "0.3" rand = "0.3"
rust-crypto = "0.2" rust-crypto = "0.2"
rustc-serialize = "0.3" rustc-serialize = "0.3"

View File

@ -71,4 +71,13 @@ cross-chain atomic swaps) are more likely to be accepted than things which
support only a single blockchain. support only a single blockchain.
## Release Notes
I will try to document all breaking changes here so that people upgrading will know
what they need to change.
### 0.11
Remove `num` dependency at Matt's request; agree this is obnoxious to require all
downstream users to also have a `num` dependency just so they can use `Uint256::from_u64`.