Skip to content

Commit da1fa77

Browse files
committed
Merge rust-bitcoin#5160: Release tracking PR: bitcoin-consensus-encoding
e7d7617 consensus_encoding: Bump the version to 1.0.0-rc.1 (Tobin C. Harding) 56fe5f2 consensus_encoding: Re-export hashes crate (Tobin C. Harding) Pull request description: We just bumped the `hashes` version, requires another release here. Includes a patch to re-export `hashes` dep. Close: rust-bitcoin#5156 ACKs for top commit: apoelstra: ACK e7d7617; successfully ran local tests Tree-SHA512: eda7f13e0f683cfdd3a758f0b3422ba7ac8a38138af66b524012d521545fdf847b6d7dac7a3f3f52c09b6fbf55fb43fea74e118b2b2f96b7f8f342542d6f33e9
2 parents fb5bacc + e7d7617 commit da1fa77

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
lines changed

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ version = "0.0.0"
7474

7575
[[package]]
7676
name = "bitcoin-consensus-encoding"
77-
version = "1.0.0-rc.0"
77+
version = "1.0.0-rc.1"
7878
dependencies = [
7979
"bitcoin-internals",
8080
"bitcoin_hashes 0.17.0",

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ version = "0.0.0"
7373

7474
[[package]]
7575
name = "bitcoin-consensus-encoding"
76-
version = "1.0.0-rc.0"
76+
version = "1.0.0-rc.1"
7777
dependencies = [
7878
"bitcoin-internals",
7979
"bitcoin_hashes 0.17.0",

consensus_encoding/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 1.0.0-rc.0 - 2025-09-20
1+
# 1.0.0 - 2025-10-10
22

33
This changelog is a rolling description of everything that will eventually end up in `v1.0`.
44

consensus_encoding/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoin-consensus-encoding"
3-
version = "1.0.0-rc.0"
3+
version = "1.0.0-rc.1"
44
authors = ["Andrew Poelstra <[email protected]>", "Tobin C. Harding <[email protected]>"]
55
license = "CC0-1.0"
66
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"

consensus_encoding/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ extern crate alloc;
1717
#[cfg(feature = "std")]
1818
extern crate std;
1919

20+
/// Rust implementation of cryptographic hash function algorithms.
21+
pub extern crate hashes;
22+
2023
mod decode;
2124
mod encode;
2225

primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ arbitrary = ["dep:arbitrary", "units/arbitrary"]
2323
hex = ["dep:hex", "hashes/hex", "internals/hex"]
2424

2525
[dependencies]
26-
encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.0", default-features = false }
26+
encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.1", default-features = false }
2727
hashes = { package = "bitcoin_hashes", path = "../hashes", version = "0.17.0", default-features = false }
2828
internals = { package = "bitcoin-internals", path = "../internals" }
2929
units = { package = "bitcoin-units", path = "../units", version = "1.0.0-rc.1", default-features = false, features = [ "encoding" ] }

units/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ std = ["alloc", "internals/std", "encoding?/std"]
1818
alloc = ["internals/alloc", "serde?/alloc", "encoding?/alloc"]
1919

2020
[dependencies]
21-
encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.0", default-features = false, optional = true }
21+
encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.1", default-features = false, optional = true }
2222
internals = { package = "bitcoin-internals", path = "../internals", version = "0.4.1" }
2323

2424
serde = { version = "1.0.195", default-features = false, features = ["derive"], optional = true }

0 commit comments

Comments
 (0)