Skip to content

Commit 41a9734

Browse files
committed
Release tracking PR: units v1.0.0-rc.3
Do another RC round. Added changelog entry for the `Amount` string value separator PR. Bumped version and updated crates that depend on `units` to use it. Updated lock files.
1 parent 3b70bda commit 41a9734

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

Cargo-minimal.lock

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

152152
[[package]]
153153
name = "bitcoin-units"
154-
version = "1.0.0-rc.2"
154+
version = "1.0.0-rc.3"
155155
dependencies = [
156156
"arbitrary",
157157
"bincode",

Cargo-recent.lock

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

151151
[[package]]
152152
name = "bitcoin-units"
153-
version = "1.0.0-rc.2"
153+
version = "1.0.0-rc.3"
154154
dependencies = [
155155
"arbitrary",
156156
"bincode",

bitcoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ internals = { package = "bitcoin-internals", path = "../internals", version = "0
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"] }
36-
units = { package = "bitcoin-units", path = "../units", version = "1.0.0-rc.2", default-features = false, features = ["alloc"] }
36+
units = { package = "bitcoin-units", path = "../units", version = "1.0.0-rc.3", default-features = false, features = ["alloc"] }
3737

3838
arbitrary = { version = "1.4.1", optional = true }
3939
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", version = "0.18.0", path = "../hashes", d
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", version = "1.0.0-rc.2", default-features = false }
26+
units = { package = "bitcoin-units", path = "../units", version = "1.0.0-rc.3", 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
@@ -24,7 +24,7 @@ hex = ["dep:hex-stable", "dep:hex-unstable", "hashes/hex", "internals/hex"]
2424
encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.1", default-features = false }
2525
hashes = { package = "bitcoin_hashes", path = "../hashes", version = "0.18.0", default-features = false }
2626
internals = { package = "bitcoin-internals", path = "../internals", version = "0.4.1" }
27-
units = { package = "bitcoin-units", path = "../units", version = "1.0.0-rc.2", default-features = false, features = [ "encoding" ] }
27+
units = { package = "bitcoin-units", path = "../units", version = "1.0.0-rc.3", default-features = false, features = [ "encoding" ] }
2828
arrayvec = { version = "0.7.2", default-features = false }
2929

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

units/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This changelog is a rolling description of everything that will eventually end u
77
* Introduce limit to `Amount`
88
* Prepare to enforce `MAX_MONEY` invariant [#4164](https://github.com/rust-bitcoin/rust-bitcoin/pull/4164)
99
* Enforce `MAX_MONEY` invariant in amount types [#4157](https://github.com/rust-bitcoin/rust-bitcoin/pull/4157)
10+
* Allow underscores as separators in `Amount` values [#5309](https://github.com/rust-bitcoin/rust-bitcoin/pull/5309)
1011
* New `NumOpResult` type
1112
* Introduce monadic `NumOpResult` type [#4007](https://github.com/rust-bitcoin/rust-bitcoin/pull/4007)
1213
* Add impls for `NumOpResult` div and mul [#4337](https://github.com/rust-bitcoin/rust-bitcoin/pull/4337)

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.2"
3+
version = "1.0.0-rc.3"
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)