Skip to content

Commit

Permalink
Merge rust-bitcoin#3376: Release tracking PR: bitcoin-io v0.2.0
Browse files Browse the repository at this point in the history
fed94f8 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 fed94f8 successfully ran local tests

Tree-SHA512: f31765a24f1b41665f0c2c3cd5b14fb08f8ad0ea348c08f1e262ee2bc4d7fb63451bca79f4ac0f65a3050251d7cec1470dbeb1cea3fb82b3fa29ad5efc906f5c
  • Loading branch information
apoelstra committed Oct 3, 2024
2 parents e8a3c1f + fed94f8 commit bb38aeb
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ dependencies = [

[[package]]
name = "bitcoin-io"
version = "0.1.2"
version = "0.2.0"
dependencies = [
"bitcoin-internals",
]
Expand Down
2 changes: 1 addition & 1 deletion Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ dependencies = [

[[package]]
name = "bitcoin-io"
version = "0.1.2"
version = "0.2.0"
dependencies = [
"bitcoin-internals",
]
Expand Down
2 changes: 1 addition & 1 deletion bitcoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion hashes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
7 changes: 7 additions & 0 deletions io/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoin-io"
version = "0.1.2"
version = "0.2.0"
authors = ["Matt Corallo <[email protected]>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-bitcoin"
Expand Down
2 changes: 1 addition & 1 deletion primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit bb38aeb

Please sign in to comment.