Merge rust-bitcoin/rust-bitcoin#3376: Release tracking PR: `bitcoin-io v0.2.0`

fed94f8899 Bump version of bitcoin-io to 0.2.0 (Tobin C. Harding)

Pull request description:

  In preparation for releasing `io v0.2.0` bump the version number, add a changelog entry, update the lock files, and depend on the new version in all crates that depend on `io`.

ACKs for top commit:
  apoelstra:
    ACK fed94f8899 successfully ran local tests

Tree-SHA512: f31765a24f1b41665f0c2c3cd5b14fb08f8ad0ea348c08f1e262ee2bc4d7fb63451bca79f4ac0f65a3050251d7cec1470dbeb1cea3fb82b3fa29ad5efc906f5c
This commit is contained in:
merge-script 2024-10-03 13:19:23 +00:00
commit bb38aeb786
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
7 changed files with 13 additions and 6 deletions

View File

@ -101,7 +101,7 @@ dependencies = [
[[package]]
name = "bitcoin-io"
version = "0.1.2"
version = "0.2.0"
dependencies = [
"bitcoin-internals",
]

View File

@ -100,7 +100,7 @@ dependencies = [
[[package]]
name = "bitcoin-io"
version = "0.1.2"
version = "0.2.0"
dependencies = [
"bitcoin-internals",
]

View File

@ -30,7 +30,7 @@ bech32 = { version = "0.11.0", default-features = false, features = ["alloc"] }
hashes = { package = "bitcoin_hashes", version = "0.14.0", default-features = false, features = ["alloc", "bitcoin-io"] }
hex = { package = "hex-conservative", version = "0.2.0", default-features = false, features = ["alloc"] }
internals = { package = "bitcoin-internals", version = "0.4.0", features = ["alloc"] }
io = { package = "bitcoin-io", version = "0.1.1", default-features = false, features = ["alloc"] }
io = { package = "bitcoin-io", version = "0.2.0", default-features = false, features = ["alloc"] }
primitives = { package = "bitcoin-primitives", version = "0.100.0", default-features = false, features = ["alloc"] }
secp256k1 = { version = "0.29.0", default-features = false, features = ["hashes", "alloc"] }
units = { package = "bitcoin-units", version = "0.2.0", default-features = false, features = ["alloc"] }

View File

@ -23,7 +23,7 @@ small-hash = []
[dependencies]
hex = { package = "hex-conservative", version = "0.2.0", default-features = false }
bitcoin-io = { version = "0.1.1", default-features = false, optional = true }
bitcoin-io = { version = "0.2.0", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, optional = true }
[dev-dependencies]

View File

@ -1,3 +1,10 @@
# 0.2.0 - 2024-09-18
* Add blanket impl of io traits for `&mut T` [#3188](https://github.com/rust-bitcoin/rust-bitcoin/pull/3188)
* Add `std` bridge [#3176](https://github.com/rust-bitcoin/rust-bitcoin/pull/3176)
* Bump MSRV to Rust `v1.63.0` [#3100](https://github.com/rust-bitcoin/rust-bitcoin/pull/3100)
* Remove blanket trait impls [#2453](https://github.com/rust-bitcoin/rust-bitcoin/pull/2453)
# 0.1.2 - 2024-03-14
* Implement `From<core::convert::Infallible>` for Errors [#2516](https://github.com/rust-bitcoin/rust-bitcoin/pull/2516)

View File

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

View File

@ -25,7 +25,7 @@ arbitrary = ["dep:arbitrary", "units/arbitrary"]
hashes = { package = "bitcoin_hashes", version = "0.14.0", default-features = false, features = ["bitcoin-io"] }
hex = { package = "hex-conservative", version = "0.2.0", default-features = false }
internals = { package = "bitcoin-internals", version = "0.4.0" }
io = { package = "bitcoin-io", version = "0.1.1", default-features = false }
io = { package = "bitcoin-io", version = "0.2.0", default-features = false }
units = { package = "bitcoin-units", version = "0.2.0", default-features = false }
arbitrary = { version = "1", optional = true }