From 13ec770f10c41080c7d76a10ab667bba9b9881ba Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 14 Mar 2024 15:22:01 +1100 Subject: [PATCH] io: Bump version to 0.1.2 There have only been two PRs merged that touched the `io` crate since it as last released. The changes are additive so we can do a pre-0.1 point release. In preparation for release bump the version and add a changelog entry. --- Cargo-minimal.lock | 2 +- Cargo-recent.lock | 2 +- io/CHANGELOG.md | 5 +++++ io/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index 8b6beda1..4f3cd125 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -88,7 +88,7 @@ dependencies = [ [[package]] name = "bitcoin-io" -version = "0.1.1" +version = "0.1.2" [[package]] name = "bitcoin-units" diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 0147aeda..5601a833 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -87,7 +87,7 @@ dependencies = [ [[package]] name = "bitcoin-io" -version = "0.1.1" +version = "0.1.2" [[package]] name = "bitcoin-units" diff --git a/io/CHANGELOG.md b/io/CHANGELOG.md index d22f978a..70d22dee 100644 --- a/io/CHANGELOG.md +++ b/io/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.1.2 - 2024-03-14 + +* Implement `From` for Errors [#2516](https://github.com/rust-bitcoin/rust-bitcoin/pull/2516) +* Fix new CI build warnings [#2488](https://github.com/rust-bitcoin/rust-bitcoin/pull/2488) + # 0.1.1 - Initial Release - 2024-02-18 Create the `io` crate, add basic I/O traits, types, and implementations. diff --git a/io/Cargo.toml b/io/Cargo.toml index 6fe07dc5..ce3a71a4 100644 --- a/io/Cargo.toml +++ b/io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoin-io" -version = "0.1.1" +version = "0.1.2" authors = ["Matt Corallo "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-bitcoin"