From 202df4f19b61b2b8304773156009efe4feec9c1a Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 26 Jul 2023 16:44:06 +1000 Subject: [PATCH] Bump version to 0.10.0-alpha In preparation for doing an `alpha` release of the new `primitives` crate bump the version to `0.10.0-alpha` and add a changelog entry. ref: https://doc.rust-lang.org/cargo/reference/resolver.html#pre-releases --- CHANGELOG.md | 8 +++++--- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c8de7c21..424fed538 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ -# unreleased (0.10.0) +# 0.10.0-alpha -- [Implement `std::error::Error::source` for error type](https://github.com/rust-bitcoin/rust-bech32/pull/72) +This release introduces a new `primitives` module that is basically a new implementation of the +whole crate. We also add a `segwit` module but we have not yet settled on the exact new API in +`lib.rs`, hence the `alpha` release. # 0.9.1 @@ -10,4 +12,4 @@ # 0.9.0 - [Enable edition 2018](https://github.com/rust-bitcoin/rust-bech32/pull/57) bumping MSRV to 1.41.1 -- [Implement `From for u8`](https://github.com/rust-bitcoin/rust-bech32/pull/58) \ No newline at end of file +- [Implement `From for u8`](https://github.com/rust-bitcoin/rust-bech32/pull/58) diff --git a/Cargo.toml b/Cargo.toml index 706ff9447..2465c2a94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bech32" -version = "0.9.1" +version = "0.10.0-alpha" authors = ["Clark Moody", "Andrew Poelstra", "Tobin Harding", "The rust-bitcoin developers"] repository = "https://github.com/rust-bitcoin/rust-bech32" documentation = "https://docs.rs/bech32/"