From 877d389d3441c0806643a4cce27a0f1f0885388d Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 15 Jan 2024 07:46:42 +1100 Subject: [PATCH] Bump version to 0.10.0 In preparation for doing the first "real" (non-beta) release of the new `primitives` module add a changelog entry and bump the version. --- CHANGELOG.md | 10 ++++++++-- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index adc33ed..017e116 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ -# 0.10.0-beta.2 - 2024-01-17 +# 0.10.0 - 2024-01-24 -- Add accessor functions to the `decode` types [167](https://github.com/rust-bitcoin/rust-bech32/pull/167) +Release the new `primitives` module! + +Right before doing this release we added a few API improvements to the `primitives::decode` module: + +- Add accessor functions to the `decode` types [#167](https://github.com/rust-bitcoin/rust-bech32/pull/167) +- Add `CheckedHrpstring::fe32_iter` function [#174](https://github.com/rust-bitcoin/rust-bech32/pull/174) +- Make a couple of the functions on `CheckedHrpstring` struct public [#173](https://github.com/rust-bitcoin/rust-bech32/pull/173) # 0.10.0-beta diff --git a/Cargo.toml b/Cargo.toml index 8a59003..3e84497 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bech32" -version = "0.10.0-beta.2" +version = "0.10.0" authors = ["Clark Moody", "Andrew Poelstra", "Tobin Harding"] repository = "https://github.com/rust-bitcoin/rust-bech32" documentation = "https://docs.rs/bech32/"