zcash_primitives 0.9.0

This commit is contained in:
Jack Grigg 2022-11-11 20:37:55 +00:00
parent 318d1b7522
commit c3b6e5a72a
9 changed files with 11 additions and 8 deletions

View File

@ -85,7 +85,7 @@ 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`
`zcash_primitives 0.8`, `orchard 0.3`.
`zcash_primitives 0.9`, `orchard 0.3`.
- `zcash_client_backend::proto`:
- The Protocol Buffers bindings are now generated for `prost 0.11` instead of
`protobuf 2`.

View File

@ -23,7 +23,7 @@ development = ["zcash_proofs"]
zcash_address = { version = "0.2", path = "../components/zcash_address" }
zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" }
zcash_note_encryption = { version = "0.2", path = "../components/zcash_note_encryption" }
zcash_primitives = { version = "0.8", path = "../zcash_primitives" }
zcash_primitives = { version = "0.9", path = "../zcash_primitives" }
# Dependencies exposed in a public API:
# (Breaking upgrades to these require a breaking upgrade to this crate.)

View File

@ -65,7 +65,7 @@ and this library adheres to Rust's notion of
(and in the future, outputs to other pools). Values for this column should
be assigned by inference from the address type in the stored data.
- MSRV is now 1.56.1.
- Bumped dependencies to `ff 0.12`, `group 0.12`, `jubjub 0.9`, `zcash_primitives 0.8`.
- Bumped dependencies to `ff 0.12`, `group 0.12`, `jubjub 0.9`, `zcash_primitives 0.9`.
- Renamed the following to use lower-case abbreviations (matching Rust
naming conventions):
- `zcash_client_sqlite::BlockDB` to `BlockDb`

View File

@ -15,7 +15,7 @@ rust-version = "1.56.1"
[dependencies]
zcash_client_backend = { version = "0.5", path = "../zcash_client_backend" }
zcash_primitives = { version = "0.8", path = "../zcash_primitives" }
zcash_primitives = { version = "0.9", path = "../zcash_primitives" }
# Dependencies exposed in a public API:
# (Breaking upgrades to these require a breaking upgrade to this crate.)
@ -48,7 +48,7 @@ rand_core = "0.6"
regex = "1.4"
tempfile = "3"
zcash_proofs = { version = "0.8", path = "../zcash_proofs" }
zcash_primitives = { version = "0.8", path = "../zcash_primitives", features = ["test-dependencies"] }
zcash_primitives = { version = "0.9", path = "../zcash_primitives", features = ["test-dependencies"] }
zcash_address = { version = "0.2", path = "../components/zcash_address", features = ["test-dependencies"] }
[features]

View File

@ -11,7 +11,7 @@ rust-version = "1.56.1"
[dependencies]
blake2b_simd = "1"
zcash_primitives = { version = "0.8", path = "../zcash_primitives", features = ["zfuture" ] }
zcash_primitives = { version = "0.9", path = "../zcash_primitives", features = ["zfuture" ] }
[dev-dependencies]
ff = "0.12"

View File

@ -7,6 +7,7 @@ and this library adheres to Rust's notion of
## [Unreleased]
## [0.9.0] - 2022-11-12
### Added
- Added to `zcash_primitives::transaction::builder`:
- `Error::{InsufficientFunds, ChangeRequired, Balance, Fee}`

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_primitives"
description = "Rust implementations of the Zcash primitives"
version = "0.8.1"
version = "0.9.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.9`.
## [0.8.0] - 2022-10-19
### Changed

View File

@ -17,7 +17,7 @@ categories = ["cryptography::cryptocurrencies"]
all-features = true
[dependencies]
zcash_primitives = { version = "0.8", path = "../zcash_primitives" }
zcash_primitives = { version = "0.9", path = "../zcash_primitives" }
# Dependencies exposed in a public API:
# (Breaking upgrades to these require a breaking upgrade to this crate.)