Skip to content

Commit

Permalink
Merge pull request #1311 from zcash/release-zcash_primitives-0.15.0
Browse files Browse the repository at this point in the history
zcash_primitives release version 0.15.0
  • Loading branch information
nuttycom authored Mar 25, 2024
2 parents 22f90bc + 4cf8cab commit 181e898
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 21 deletions.
22 changes: 13 additions & 9 deletions Cargo.lock

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

16 changes: 5 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ zcash_keys = { version = "0.1", path = "zcash_keys" }
zcash_protocol = { version = "0.1", path = "components/zcash_protocol" }

zcash_note_encryption = "0.4"
zcash_primitives = { version = "0.14", path = "zcash_primitives", default-features = false }
zcash_primitives = { version = "0.15", path = "zcash_primitives", default-features = false }
zcash_proofs = { version = "0.14", path = "zcash_proofs", default-features = false }

# Shielded protocols
ff = "0.13"
group = "0.13"
incrementalmerkletree = "0.5"
shardtree = "0.2"
incrementalmerkletree = "0.5.1"
shardtree = "0.3"
zcash_spec = "0.1"

# Payment protocols
Expand All @@ -52,11 +52,11 @@ bitvec = "1"
blake2s_simd = "1"
bls12_381 = "0.8"
jubjub = "0.10"
sapling = { package = "sapling-crypto", version = "0.1.2" }
sapling = { package = "sapling-crypto", version = "0.1.3" }

# - Orchard
nonempty = "0.7"
orchard = { version = "0.7.1", default-features = false }
orchard = { version = "0.8.0", default-features = false }
pasta_curves = "0.5"

# - Transparent
Expand Down Expand Up @@ -120,9 +120,3 @@ zip32 = "0.1.1"
lto = true
panic = 'abort'
codegen-units = 1

[patch.crates-io]
orchard = { git = "https://github.com/zcash/orchard", rev = "33474bdbfd7268e1f84718078d47f63d01a879d5" }
incrementalmerkletree = { git = "https://github.com/zcash/incrementalmerkletree", rev = "e1a7a80212c22e5a8912d05860f7eb6899c56a7c" }
sapling = { git = "https://github.com/zcash/sapling-crypto", package = "sapling-crypto", rev = "22412ae07644813253feb064d1692b0823242853" }
shardtree = { git = "https://github.com/zcash/incrementalmerkletree", rev = "e1a7a80212c22e5a8912d05860f7eb6899c56a7c" }
3 changes: 3 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.15.0] - 2024-03-25

### Added
- `zcash_primitives::transaction::components::sapling::zip212_enforcement`

Expand All @@ -21,6 +23,7 @@ and this library adheres to Rust's notion of
`Amount` and `NonNegativeAmount` value types now return
`Result<_, BalanceError>` instead of `Result<_, ()>`.
- `zcash_primitives::memo` re-exports `zcash_protocol::memo`.
- Update to `orchard` version `0.8.0`

### Removed
- `zcash_primitives::consensus::sapling_zip212_enforcement` instead use
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.14.0"
version = "0.15.0"
authors = [
"Jack Grigg <jack@z.cash>",
"Kris Nuttycombe <kris@electriccoin.co>"
Expand Down

0 comments on commit 181e898

Please sign in to comment.