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: ACK13ec770f10
sanket1729: utACK13ec770f10
Tree-SHA512: 319edb80cedffe796df798ba5fc640953ccfde12295d0bf5b7987ab69b1b677108a7351d4d1d335e4136801589503666172891d2b6ee73ed8be58ddafc9547fe
This commit is contained in:
commit
5269adfc62
|
@ -88,7 +88,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bitcoin-io"
|
name = "bitcoin-io"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bitcoin-units"
|
name = "bitcoin-units"
|
||||||
|
|
|
@ -87,7 +87,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bitcoin-io"
|
name = "bitcoin-io"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bitcoin-units"
|
name = "bitcoin-units"
|
||||||
|
|
|
@ -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
|
# 0.1.1 - Initial Release - 2024-02-18
|
||||||
|
|
||||||
Create the `io` crate, add basic I/O traits, types, and implementations.
|
Create the `io` crate, add basic I/O traits, types, and implementations.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bitcoin-io"
|
name = "bitcoin-io"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
authors = ["Matt Corallo <birchneutea@mattcorallo.com>"]
|
authors = ["Matt Corallo <birchneutea@mattcorallo.com>"]
|
||||||
license = "CC0-1.0"
|
license = "CC0-1.0"
|
||||||
repository = "https://github.com/rust-bitcoin/rust-bitcoin"
|
repository = "https://github.com/rust-bitcoin/rust-bitcoin"
|
||||||
|
|
Loading…
Reference in New Issue