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.
This commit is contained in:
Tobin C. Harding 2024-03-14 15:22:01 +11:00
parent 1ceac90bf6
commit 13ec770f10
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
4 changed files with 8 additions and 3 deletions

View File

@ -88,7 +88,7 @@ dependencies = [
[[package]]
name = "bitcoin-io"
version = "0.1.1"
version = "0.1.2"
[[package]]
name = "bitcoin-units"

View File

@ -87,7 +87,7 @@ dependencies = [
[[package]]
name = "bitcoin-io"
version = "0.1.1"
version = "0.1.2"
[[package]]
name = "bitcoin-units"

View File

@ -1,3 +1,8 @@
# 0.1.2 - 2024-03-14
* Implement `From<core::convert::Infallible>` 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.

View File

@ -1,6 +1,6 @@
[package]
name = "bitcoin-io"
version = "0.1.1"
version = "0.1.2"
authors = ["Matt Corallo <birchneutea@mattcorallo.com>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-bitcoin"