Merge rust-bitcoin/rust-bitcoin#2596: Release tracking PR: `io v0.1.2`

13ec770f10 io: Bump version to 0.1.2 (Tobin C. Harding)

Pull request description:

  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.

ACKs for top commit:
  apoelstra:
    ACK 13ec770f10
  sanket1729:
    utACK 13ec770f10

Tree-SHA512: 319edb80cedffe796df798ba5fc640953ccfde12295d0bf5b7987ab69b1b677108a7351d4d1d335e4136801589503666172891d2b6ee73ed8be58ddafc9547fe
This commit is contained in:
Andrew Poelstra 2024-03-17 17:51:06 +00:00
commit 5269adfc62
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
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"