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:
parent
1ceac90bf6
commit
13ec770f10
|
@ -88,7 +88,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "bitcoin-io"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
|
||||
[[package]]
|
||||
name = "bitcoin-units"
|
||||
|
|
|
@ -87,7 +87,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "bitcoin-io"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
|
||||
[[package]]
|
||||
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
|
||||
|
||||
Create the `io` crate, add basic I/O traits, types, and implementations.
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue