Skip to content

Commit cf10e50

Browse files
committed
units: Bump version to 1.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`.
1 parent a1c35a3 commit cf10e50

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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"] }

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: 1 addition & 1 deletion
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/"

0 commit comments

Comments
 (0)