Skip to content

Commit

Permalink
zcash_primitives 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Oct 2, 2024
1 parent 6ee2ddf commit c36c408
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.18", path = "zcash_primitives", default-features = false }
zcash_primitives = { version = "0.19", path = "zcash_primitives", default-features = false }
zcash_proofs = { version = "0.18", path = "zcash_proofs", default-features = false }

# Shielded protocols
Expand Down
24 changes: 8 additions & 16 deletions supply-chain/imports.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,8 @@ version = "0.6.0"
audited_as = "0.5.0"

[[unpublished.zcash_primitives]]
version = "0.18.0"
audited_as = "0.17.0"

[[unpublished.zcash_proofs]]
version = "0.18.0"
audited_as = "0.17.0"

[[unpublished.zcash_protocol]]
version = "0.4.0"
audited_as = "0.3.0"
version = "0.19.0"
audited_as = "0.18.0"

[[publisher.bumpalo]]
version = "3.16.0"
Expand Down Expand Up @@ -295,22 +287,22 @@ user-login = "nuttycom"
user-name = "Kris Nuttycombe"

[[publisher.zcash_primitives]]
version = "0.17.0"
when = "2024-08-26"
version = "0.18.0"
when = "2024-10-02"
user-id = 169181
user-login = "nuttycom"
user-name = "Kris Nuttycombe"

[[publisher.zcash_proofs]]
version = "0.17.0"
when = "2024-08-26"
version = "0.18.0"
when = "2024-10-02"
user-id = 169181
user-login = "nuttycom"
user-name = "Kris Nuttycombe"

[[publisher.zcash_protocol]]
version = "0.3.0"
when = "2024-08-26"
version = "0.4.0"
when = "2024-10-02"
user-id = 169181
user-login = "nuttycom"
user-name = "Kris Nuttycombe"
Expand Down
2 changes: 1 addition & 1 deletion zcash_client_backend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ and this library adheres to Rust's notion of

### Changed
- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_address 0.6`,
`zcash_primitives 0.18`, `zcash_proofs 0.18`, `zcash_protocol 0.4`.
`zcash_primitives 0.19`, `zcash_proofs 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.
Expand Down
2 changes: 1 addition & 1 deletion zcash_client_sqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this library adheres to Rust's notion of

### Changed
- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_address 0.6`,
`zcash_primitives 0.18`, `zcash_proofs 0.18`, `zcash_protocol 0.4`.
`zcash_primitives 0.19`, `zcash_proofs 0.18`, `zcash_protocol 0.4`.
- `zcash_client_sqlite::error::SqliteClientError::RequestedRewindInvalid`
is now a structured variant.

Expand Down
2 changes: 1 addition & 1 deletion zcash_keys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ and this library adheres to Rust's notion of

### Changed
- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_address 0.6`,
`zcash_primitives 0.18`, `zcash_protocol 0.4`.
`zcash_primitives 0.19`, `zcash_protocol 0.4`.

## [0.3.0] - 2024-08-19
### Notable changes
Expand Down
2 changes: 2 additions & 0 deletions zcash_primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this library adheres to Rust's notion of

## [Unreleased]

## [0.19.0] - 2024-10-02

### Changed
- Migrated to `zcash_address 0.6`.

Expand Down
2 changes: 1 addition & 1 deletion zcash_primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zcash_primitives"
description = "Rust implementations of the Zcash primitives"
version = "0.18.0"
version = "0.19.0"
authors = [
"Jack Grigg <[email protected]>",
"Kris Nuttycombe <[email protected]>"
Expand Down
9 changes: 9 additions & 0 deletions zcash_proofs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this library adheres to Rust's notion of

## [Unreleased]

### Changed
- Migrated to `zcash_primitives 0.19`.

### Fixed
- The previous release of `zcash_primitives` did not bump `zcash_address` and
ended up depending on multiple versions of `zcash_protocol`, which didn't
cause a code conflict but results in two different consensus protocol states
being present in the dependency tree.

## [0.18.0] - 2024-10-02

### Changed
Expand Down

0 comments on commit c36c408

Please sign in to comment.