Skip to content

Commit 054d758

Browse files
committed
Merge rust-bitcoin#5377: Release tracking PR: internals v0.4.2
fb65b56 internals: Bump version to 0.4.2 (Tobin C. Harding) 6df4240 internals: Add changelog for 0.4.1 release (Tobin C. Harding) Pull request description: In preparation for releasing `bitcoin 0.33.0-rc.0` we need do a point release of `internals` because we move a macro out of `bitcoin` and over to `internals`. No other crate uses the macro so far so we only update the `bitcoin` dependency on `internals` leaving the other crates as they are. Bump the version, add a changelog, update the lockfiles. Successfully ran: `cargo publish --dry-run -p bitcoin-internals` ACKs for top commit: apoelstra: ACK fb65b56; successfully ran local tests Tree-SHA512: eb21090015b0506f9a5b60a7e56043642fe94ad4316130ea09a562dcc609ae22d29721fe050da7246d07c6d886594042e39c8d51b1de2134e4c55864bb5234e9
2 parents b2cc3fd + fb65b56 commit 054d758

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ dependencies = [
100100

101101
[[package]]
102102
name = "bitcoin-internals"
103-
version = "0.4.1"
103+
version = "0.4.2"
104104
dependencies = [
105105
"bincode",
106106
"hex-conservative 0.3.0",

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ dependencies = [
9999

100100
[[package]]
101101
name = "bitcoin-internals"
102-
version = "0.4.1"
102+
version = "0.4.2"
103103
dependencies = [
104104
"bincode",
105105
"hex-conservative 0.3.0",

bitcoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ base58 = { package = "base58ck", path = "../base58", version = "0.2.0", default-
2929
bech32 = { version = "0.11.0", default-features = false, features = ["alloc"] }
3030
hashes = { package = "bitcoin_hashes", path = "../hashes", version = "0.18.0", default-features = false, features = ["alloc", "hex"] }
3131
hex = { package = "hex-conservative", version = "0.3.0", default-features = false, features = ["alloc"] }
32-
internals = { package = "bitcoin-internals", path = "../internals", version = "0.4.1", features = ["alloc", "hex"] }
32+
internals = { package = "bitcoin-internals", path = "../internals", version = "0.4.2", features = ["alloc", "hex"] }
3333
io = { package = "bitcoin-io", path = "../io", version = "0.3.0", default-features = false, features = ["alloc", "hashes"] }
3434
primitives = { package = "bitcoin-primitives", path = "../primitives", version = "1.0.0-rc.0", default-features = false, features = ["alloc", "hex"] }
3535
secp256k1 = { version = "0.32.0-beta.2", default-features = false, features = ["alloc"] }

internals/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.4.2 - 2025-12-08
2+
3+
- Move `impl_array_newtype` to internals [#5334](https://github.com/rust-bitcoin/rust-bitcoin/pull/5334)
4+
5+
# 0.4.1 - 2024-10-18
6+
7+
- Bump MSRV to Rust 1.74.0 [#4926](https://github.com/rust-bitcoin/rust-bitcoin/pull/4926)
8+
- Add `hex-conservative` dependency
9+
110
# 0.4.0 - 2024-09-18
211

312
- Introduce `ToU64` trait [#2929](https://github.com/rust-bitcoin/rust-bitcoin/pull/2929)

internals/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-internals"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Andrew Poelstra <[email protected]>", "The Rust Bitcoin developers"]
55
license = "CC0-1.0"
66
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"

0 commit comments

Comments
 (0)