diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ac893ee75..6460b531fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,33 @@ +# 0.26.1 - 2020-06-06 + +- [Change Amount Debug impl to BTC with 8 decimals](https://github.com/rust-bitcoin/rust-bitcoin/pull/414) +- [Make uint types (un)serializable](https://github.com/rust-bitcoin/rust-bitcoin/pull/511) +- Add [more derives for key::Error](https://github.com/rust-bitcoin/rust-bitcoin/pull/551) +- [Fix optional amount serialization](https://github.com/rust-bitcoin/rust-bitcoin/pull/552) +- Add [PSBT base64 (de)serialization with Display & FromStr](https://github.com/rust-bitcoin/rust-bitcoin/pull/557) +- Add [non-API breaking derives for error & transaction types](https://github.com/rust-bitcoin/rust-bitcoin/pull/558) +- [Fix error derives](https://github.com/rust-bitcoin/rust-bitcoin/pull/559) +- [Add function to check RBF-ness of transactions](https://github.com/rust-bitcoin/rust-bitcoin/pull/565) +- [Add Script:dust_value() to get minimum output value for a spk](https://github.com/rust-bitcoin/rust-bitcoin/pull/566) +- [Improving bip32 ChildNumber display implementation](https://github.com/rust-bitcoin/rust-bitcoin/pull/567) +- [Make Script::fmt_asm a static method and add Script::str_asm ](https://github.com/rust-bitcoin/rust-bitcoin/pull/569) +- [Return BlockHash from BlockHeader::validate_pow](https://github.com/rust-bitcoin/rust-bitcoin/pull/572) +- [Add a method to error on non-standard hashtypes](https://github.com/rust-bitcoin/rust-bitcoin/pull/573) +- [Include proprietary key in deserialized PSBT](https://github.com/rust-bitcoin/rust-bitcoin/pull/577) +- [Fix Script::dust_value()'s calculation for non-P2*PKH script_pubkeys](https://github.com/rust-bitcoin/rust-bitcoin/pull/579) +- Add [Address to optimized QR string](https://github.com/rust-bitcoin/rust-bitcoin/pull/581) conversion +- [Correct Transaction struct encode_signing_data_to doc comment](https://github.com/rust-bitcoin/rust-bitcoin/pull/582) +- Fixing [CI if base image's apt db is outdated](https://github.com/rust-bitcoin/rust-bitcoin/pull/583) +- [Introduce some policy constants from Bitcoin Core](https://github.com/rust-bitcoin/rust-bitcoin/pull/584) +- [Fix warnings for sighashtype](https://github.com/rust-bitcoin/rust-bitcoin/pull/586) +- [Introduction of Schnorr keys](https://github.com/rust-bitcoin/rust-bitcoin/pull/589) +- Adding [constructors for compressed and uncompressed ECDSA keys](https://github.com/rust-bitcoin/rust-bitcoin/pull/592) +- [Count bytes read in encoding](https://github.com/rust-bitcoin/rust-bitcoin/pull/594) +- [Add verify_with_flags to Script and Transaction](https://github.com/rust-bitcoin/rust-bitcoin/pull/598) +- [Fixes documentation intra-links and enforce it](https://github.com/rust-bitcoin/rust-bitcoin/pull/600) +- [Fixing hashes core dependency and fuzz feature](https://github.com/rust-bitcoin/rust-bitcoin/pull/602) + # 0.26.0 - 2020-12-21 - Add [signet support](https://github.com/rust-bitcoin/rust-bitcoin/pull/291) diff --git a/Cargo.toml b/Cargo.toml index ec678b6fab..533560e7d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoin" -version = "0.26.0" +version = "0.26.1" authors = ["Andrew Poelstra "] license = "CC0-1.0" homepage = "https://github.com/rust-bitcoin/rust-bitcoin/"