zcash_primitives 0.18.0

This commit is contained in:
Jack Grigg 2024-10-02 20:12:02 +00:00
parent e5185e2896
commit fa73e4c04b
9 changed files with 16 additions and 7 deletions

2
Cargo.lock generated
View File

@ -6020,7 +6020,7 @@ dependencies = [
[[package]]
name = "zcash_primitives"
version = "0.17.0"
version = "0.18.0"
dependencies = [
"aes",
"assert_matches",

View File

@ -40,7 +40,7 @@ zcash_protocol = { version = "0.4", path = "components/zcash_protocol" }
zip321 = { version = "0.1", path = "components/zip321" }
zcash_note_encryption = "0.4"
zcash_primitives = { version = "0.17", path = "zcash_primitives", default-features = false }
zcash_primitives = { version = "0.18", path = "zcash_primitives", default-features = false }
zcash_proofs = { version = "0.17", path = "zcash_proofs", default-features = false }
# Shielded protocols

View File

@ -1,6 +1,10 @@
# cargo-vet imports lock
[[unpublished.zcash_primitives]]
version = "0.18.0"
audited_as = "0.17.0"
[[unpublished.zcash_protocol]]
version = "0.4.0"
audited_as = "0.3.0"

View File

@ -13,7 +13,8 @@ and this library adheres to Rust's notion of
- `WalletSummary::recovery_progress`
### Changed
- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_protocol 0.4`.
- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_primitives 0.18`,
`zcash_protocol 0.4`.
- The `Account` trait now uses an associated type for its `AccountId`
type instead of a type parameter. This change allows for the simplification
of some type signatures.

View File

@ -8,7 +8,8 @@ and this library adheres to Rust's notion of
## [Unreleased]
### Changed
- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_protocol 0.4`.
- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_primitives 0.18`,
`zcash_protocol 0.4`.
- `zcash_client_sqlite::error::SqliteClientError::RequestedRewindInvalid`
is now a structured variant.

View File

@ -13,7 +13,8 @@ and this library adheres to Rust's notion of
- `impl std::error::Error for DerivationError`
### Changed
- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_protocol 0.4`.
- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_primitives 0.18`,
`zcash_protocol 0.4`.
## [0.3.0] - 2024-08-19
### Notable changes

View File

@ -7,6 +7,8 @@ and this library adheres to Rust's notion of
## [Unreleased]
## [0.18.0] - 2024-10-02
### Changed
- Update dependencies to `incrementalmerkletree 0.7`, `orchard 0.10`,
`sapling-crypto 0.3`, `zcash_protocol 0.4`.

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_primitives"
description = "Rust implementations of the Zcash primitives"
version = "0.17.0"
version = "0.18.0"
authors = [
"Jack Grigg <jack@z.cash>",
"Kris Nuttycombe <kris@electriccoin.co>"

View File

@ -8,7 +8,7 @@ and this library adheres to Rust's notion of
## [Unreleased]
### Changed
- Migrated to `sapling-crypto 0.3`.
- Migrated to `sapling-crypto 0.3`, `zcash_primitives 0.18`.
## [0.17.0] - 2024-08-26