Skip to content

Commit 37cfd15

Browse files
authored
Merge pull request #1941 from zcash/release/zcash_primitives-0.24.1
Release zcash_primitives version 0.24.1
2 parents 67993dc + e9a2fca commit 37cfd15

File tree

6 files changed

+18
-4
lines changed

6 files changed

+18
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

supply-chain/audits.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -899,6 +899,12 @@ criteria = "safe-to-deploy"
899899
delta = "0.15.1 -> 0.16.0"
900900
notes = "The primary change here is the switch from the `hdwallet` dependency to using `bip32`."
901901

902+
[[audits.zcash_primitives]]
903+
who = "Kris Nuttycombe <[email protected]>"
904+
criteria = "safe-to-deploy"
905+
delta = "0.24.0 -> 0.24.1"
906+
notes = "No added unsafe code or dangerous methods."
907+
902908
[[audits.zcash_proofs]]
903909
who = "Kris Nuttycombe <[email protected]>"
904910
criteria = "safe-to-deploy"

zcash_primitives/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,19 @@ workspace.
1111
## [Unreleased]
1212

1313

14+
## [0.24.1] - 2025-09-09
15+
1416
### Added
1517
- `zcash_primitives::transaction::tests::data` has been exposed under the
1618
`test-dependencies` feature to provide access to test vectors.
1719
- `zcash_primitives::transaction::builder::Builder::add_transparent_null_data_output`
1820

21+
### Changed
22+
- This release provides pre-release support for some planned Network Upgrade 7
23+
features under the `zcash_unstable=nu7` configuration flag. This
24+
configuration flag guards SemVer-breaking changes that will appear in a
25+
future `zcash_primitives` release.
26+
1927
## [0.24.0] - 2025-07-31
2028

2129
### Changed

zcash_primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zcash_primitives"
33
description = "Rust implementations of the Zcash primitives"
4-
version = "0.24.0"
4+
version = "0.24.1"
55
authors = [
66
"Jack Grigg <[email protected]>",
77
"Kris Nuttycombe <[email protected]>"

zcash_primitives/src/transaction/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ impl<P: consensus::Parameters, U: sapling::builder::ProverProgress> Builder<'_,
562562
any(zcash_unstable = "nu7", zcash_unstable = "zfuture"),
563563
feature = "zip-233"
564564
))]
565-
-self.zip233_amount,
565+
-ZatBalance::from(self.zip233_amount),
566566
#[cfg(zcash_unstable = "zfuture")]
567567
self.tze_builder.value_balance()?,
568568
];

zcash_primitives/src/transaction/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ impl<A: Authorization> TransactionData<A> {
472472
any(zcash_unstable = "nu7", zcash_unstable = "zfuture"),
473473
feature = "zip-233"
474474
))]
475-
-self.zip233_amount,
475+
-ZatBalance::from(self.zip233_amount),
476476
];
477477

478478
let overall_balance = value_balances

0 commit comments

Comments
 (0)