From 5145cb2b81f3d3bdfb93b14fe31e36971c0a9a2e 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. There are only two changes since last release, one is just to an error string so does not need a mention in the changelog. --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a0f59e8d..6e4ad3f06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.12.0 - 2024-0731 + +- Derive `Default` for `Fe32` [#184](https://github.com/rust-bitcoin/rust-bech32/pull/184/) +- Implement `ordered::ArbitraryOrd` for `Fe32` [#190](https://github.com/rust-bitcoin/rust-bech32/pull/190) + # 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/"