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"