Skip to content

Commit 8cba676

Browse files
committed
Merge rust-bitcoin#5110: Release tracking PR: units 1.0.0-rc.1
cf10e50 units: Bump version to 1.0.0-rc.1 (Tobin C. Harding) a1c35a3 internals: Bump version to 0.4.1 (Tobin C. Harding) Pull request description: - Patch 1: Update `internals` to `0.4.1`. - Patch 2: Update `units` to `v1.0.0-rc.1`. In preparation for release bump the version, update the 1.0.0 changelog, and update the lock files. While we are at it add an explicit version number to the dependency in `p2p`, `bitcoin`, and `primitives`. ACKs for top commit: apoelstra: ACK cf10e50; successfully ran local tests Tree-SHA512: ff72e71fc4a257e790e19f91757b8e487b2f91b8ffa8a3a433f3a1e59b161f3cf6e8c784930a5dcf023c1dc8ae85b4f51e3f87edf354b28644d4360c377e35a8
2 parents e48677c + cf10e50 commit 8cba676

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

Cargo-minimal.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ dependencies = [
9494

9595
[[package]]
9696
name = "bitcoin-internals"
97-
version = "0.4.0"
97+
version = "0.4.1"
9898
dependencies = [
9999
"bincode",
100100
"hex-conservative 0.3.0",
@@ -149,7 +149,7 @@ dependencies = [
149149

150150
[[package]]
151151
name = "bitcoin-units"
152-
version = "1.0.0-rc.0"
152+
version = "1.0.0-rc.1"
153153
dependencies = [
154154
"arbitrary",
155155
"bincode",

Cargo-recent.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ dependencies = [
9393

9494
[[package]]
9595
name = "bitcoin-internals"
96-
version = "0.4.0"
96+
version = "0.4.1"
9797
dependencies = [
9898
"bincode",
9999
"hex-conservative 0.3.0",
@@ -148,7 +148,7 @@ dependencies = [
148148

149149
[[package]]
150150
name = "bitcoin-units"
151-
version = "1.0.0-rc.0"
151+
version = "1.0.0-rc.1"
152152
dependencies = [
153153
"arbitrary",
154154
"bincode",

bitcoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ internals = { package = "bitcoin-internals", path = "../internals", features = [
3434
io = { package = "bitcoin-io", path = "../io", default-features = false, features = ["alloc", "hashes"] }
3535
primitives = { package = "bitcoin-primitives", path = "../primitives", default-features = false, features = ["alloc", "hex"] }
3636
secp256k1 = { version = "0.30.0", default-features = false, features = ["hashes", "alloc"] }
37-
units = { package = "bitcoin-units", path = "../units", default-features = false, features = ["alloc"] }
37+
units = { package = "bitcoin-units", path = "../units", version = "1.0.0-rc.1", default-features = false, features = ["alloc"] }
3838

3939
arbitrary = { version = "1.4.1", optional = true }
4040
base64 = { version = "0.22.0", optional = true, default-features = false, features = ["alloc"] }

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

p2p/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ hashes = { package = "bitcoin_hashes", path = "../hashes", default-features = fa
2323
hex = { package = "hex-conservative", version = "0.3.0", default-features = false }
2424
internals = { package = "bitcoin-internals", path = "../internals", default-features = false }
2525
io = { package = "bitcoin-io", path = "../io", default-features = false }
26-
units = { package = "bitcoin-units", path = "../units", default-features = false }
26+
units = { package = "bitcoin-units", path = "../units", version = "1.0.0-rc.1", default-features = false }
2727

2828
arbitrary = { version = "1.4.1", optional = true }
2929

primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ hex = ["dep:hex", "hashes/hex", "internals/hex"]
2626
encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.0", default-features = false }
2727
hashes = { package = "bitcoin_hashes", path = "../hashes", default-features = false }
2828
internals = { package = "bitcoin-internals", path = "../internals" }
29-
units = { package = "bitcoin-units", path = "../units", default-features = false, features = [ "encoding" ] }
29+
units = { package = "bitcoin-units", path = "../units", version = "1.0.0-rc.1", default-features = false, features = [ "encoding" ] }
3030
arrayvec = { version = "0.7.2", default-features = false }
3131

3232
arbitrary = { version = "1.4.1", optional = true }

units/CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# Unreleased
2-
3-
- Do not re-export doc hidden macros
4-
51
# 1.0.0 - 2025-02-24
62

73
BOOM! A long time in the making but here goes, our first 1.0 crate release.
@@ -36,6 +32,10 @@ This changelog is a rolling description of everything that will eventually end u
3632
* Change parameter type used for whole bitcoin [#3744](https://github.com/rust-bitcoin/rust-bitcoin/pull/3744)
3733
* Add `Weight::to_kwu_ceil` [#3740](https://github.com/rust-bitcoin/rust-bitcoin/pull/3740)
3834
* Replace `String` with `InputString` [#3559](https://github.com/rust-bitcoin/rust-bitcoin/pull/3559)
35+
* Do not re-export doc hidden macros
36+
* Use the new `consensus_encoding` crate to re-write encoding logic.
37+
* Decoders with phantoms [#5008](https://github.com/rust-bitcoin/rust-bitcoin/pull/5008)
38+
* Improve the decoders [#5027](https://github.com/rust-bitcoin/rust-bitcoin/pull/5027)
3939

4040
## Changes relate to error types
4141

units/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoin-units"
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/"
@@ -19,7 +19,7 @@ alloc = ["internals/alloc", "serde?/alloc", "encoding?/alloc"]
1919

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

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

0 commit comments

Comments
 (0)