Merge pull request #491 from apoelstra/2020-10--0.25.1
bump version to 0.25.1
This commit is contained in:
commit
cdb579c101
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,4 +1,17 @@
|
|||
|
||||
# 0.25.1 - 2020-10-07
|
||||
|
||||
- [Expose methods on `Script`](https://github.com/rust-bitcoin/rust-bitcoin/pull/387) to generate various scriptpubkeys
|
||||
- [Expose all cargo features of secp256k1](https://github.com/rust-bitcoin/rust-bitcoin/pull/486)
|
||||
- Allow directly creating [various hash newtypes](https://github.com/rust-bitcoin/rust-bitcoin/pull/388)
|
||||
- Add methods to `Block` [to get the coinbase tx and BIP34 height commitment](https://github.com/rust-bitcoin/rust-bitcoin/pull/444)
|
||||
- [Add `extend` method](https://github.com/rust-bitcoin/rust-bitcoin/pull/459) to bip32::DerivationPath
|
||||
- [Alias `(Fingerprint, DerivationPath)` as `KeySource`](https://github.com/rust-bitcoin/rust-bitcoin/pull/480)
|
||||
- [Add serde implementation for PSBT data structs](https://github.com/rust-bitcoin/rust-bitcoin/pull/497)
|
||||
- [Add FromStr/Display implementation for SigHashType](https://github.com/rust-bitcoin/rust-bitcoin/pull/497/commits/a4a7035a947998c8d0d69dab206e97253fd8e048)
|
||||
- Expose [the raw sighash message](https://github.com/rust-bitcoin/rust-bitcoin/pull/485) from sighash computations
|
||||
- Add [support for signmessage/verifymessage style message signatures](https://github.com/rust-bitcoin/rust-bitcoin/pull/413)
|
||||
|
||||
# 0.25.0 - 2020-09-10
|
||||
|
||||
- **Bump MSRV to 1.29.0**
|
||||
|
@ -209,4 +222,3 @@ See `Transaction::verify` and `Script::verify` methods.
|
|||
|
||||
* 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`.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "bitcoin"
|
||||
version = "0.25.0"
|
||||
version = "0.25.1"
|
||||
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
|
||||
license = "CC0-1.0"
|
||||
homepage = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
||||
|
|
Loading…
Reference in New Issue