From 81478fec01ccb0e1b69af3502332f1cd534cd9f6 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 31 Jul 2024 04:41:58 -0500 Subject: [PATCH] Bump version to 0.12.0 In preparation for release add a changelog entry and bump the version. --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a0f59e8d..a3566f92e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.12.0 - 2024-10-27 + +This release adds error correction. + +- Add support for error correction [#203](https://github.com/rust-bitcoin/rust-bech32/pull/203) [#204](https://github.com/rust-bitcoin/rust-bech32/pull/204) [#205](https://github.com/rust-bitcoin/rust-bech32/pull/205) +- Alternative `fes_to_bytes_zeropad` with no dropping of last bits [#201](https://github.com/rust-bitcoin/rust-bech32/pull/) +- Derive `Default` for `Fe32` [#184](https://github.com/rust-bitcoin/rust-bech32/pull/184/) +- Introduce a `PrintImpl` object that can compute various code properties [#180](https://github.com/rust-bitcoin/rust-bech32/pull/180) +- Add a `Hrp` constructor from an arbitrary `T: Display` [#196](https://github.com/rust-bitcoin/rust-bech32/pull/196) + # 0.11.0 - 2024-02-23 The `0.10.0` release contains API breaking changes compared to `0.10.0-beta` and because of semver diff --git a/Cargo.toml b/Cargo.toml index 701ae225a..47bb720c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bech32" -version = "0.11.0" +version = "0.12.0" authors = ["Clark Moody", "Andrew Poelstra", "Tobin Harding"] repository = "https://github.com/rust-bitcoin/rust-bech32" documentation = "https://docs.rs/bech32/"