zcash_primitives 0.7.0

This commit is contained in:
Jack Grigg 2022-06-24 16:29:22 +00:00
parent a3cae5d36a
commit e952ff637e
9 changed files with 12 additions and 7 deletions

View File

@ -25,7 +25,7 @@ subtle = { version = "2.2.3", default-features = false }
[dev-dependencies]
ff = { version = "0.12", default-features = false }
zcash_primitives = { version = "0.6", path = "../../zcash_primitives" }
zcash_primitives = { version = "0.7", path = "../../zcash_primitives" }
jubjub = "0.9"
[features]

View File

@ -45,7 +45,8 @@ and this library adheres to Rust's notion of
### Changed
- MSRV is now 1.56.1.
- Bumped dependencies to `ff 0.12`, `group 0.12`, `bls12_381 0.7`, `jubjub 0.9`.
- Bumped dependencies to `ff 0.12`, `group 0.12`, `bls12_381 0.7`, `jubjub 0.9`,
`zcash_primitives 0.7`.
- `zcash_client_backend::proto`:
- `compact_formats::CompactSpend` has been renamed to `CompactSaplingSpend`,
and its `epk` field (and associated `set_epk` method) has been renamed to

View File

@ -36,7 +36,7 @@ subtle = "2.2.3"
time = "0.2"
zcash_address = { version = "0.1", path = "../components/zcash_address" }
zcash_note_encryption = { version = "0.1", path = "../components/zcash_note_encryption" }
zcash_primitives = { version = "0.6", path = "../zcash_primitives" }
zcash_primitives = { version = "0.7", path = "../zcash_primitives" }
[build-dependencies]
protobuf-codegen-pure = "~2.27.1" # MSRV 1.52.1

View File

@ -24,7 +24,7 @@ rusqlite = { version = "0.24", features = ["bundled", "time"] }
secp256k1 = { version = "0.21" }
time = "0.2"
zcash_client_backend = { version = "0.5", path = "../zcash_client_backend" }
zcash_primitives = { version = "0.6", path = "../zcash_primitives" }
zcash_primitives = { version = "0.7", path = "../zcash_primitives" }
[dev-dependencies]
tempfile = "3"

View File

@ -10,7 +10,7 @@ edition = "2018"
[dependencies]
blake2b_simd = "1"
zcash_primitives = { version = "0.6", path = "../zcash_primitives", features = ["zfuture" ] }
zcash_primitives = { version = "0.7", path = "../zcash_primitives", features = ["zfuture" ] }
[dev-dependencies]
ff = "0.12"

View File

@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.7.0] - 2022-06-24
### Changed
- Bumped dependencies to `equihash 0.2`, `orchard 0.2`.
- `zcash_primitives::consensus`:

View File

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

View File

@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Changed
- Bumped dependencies to `zcash_primitives 0.7`.
## [0.6.0] - 2022-05-11
### Changed

View File

@ -28,7 +28,7 @@ lazy_static = "1"
minreq = { version = "2", features = ["https"], optional = true }
rand_core = "0.6"
wagyu-zcash-parameters = { version = "0.2", optional = true }
zcash_primitives = { version = "0.6", path = "../zcash_primitives" }
zcash_primitives = { version = "0.7", path = "../zcash_primitives" }
[dev-dependencies]
criterion = "0.3"