zcash_primitives 0.13.0

This commit is contained in:
Jack Grigg 2023-09-25 15:06:57 +00:00
parent 9d4863b762
commit d35d0961ab
7 changed files with 9 additions and 10 deletions

2
Cargo.lock generated
View File

@ -3077,7 +3077,7 @@ dependencies = [
[[package]] [[package]]
name = "zcash_primitives" name = "zcash_primitives"
version = "0.13.0-rc.1" version = "0.13.0"
dependencies = [ dependencies = [
"aes", "aes",
"assert_matches", "assert_matches",

View File

@ -23,7 +23,7 @@ development = ["zcash_proofs"]
zcash_address = { version = "0.3", path = "../components/zcash_address" } zcash_address = { version = "0.3", path = "../components/zcash_address" }
zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" } zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" }
zcash_note_encryption = "0.4" zcash_note_encryption = "0.4"
zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", default-features = false } zcash_primitives = { version = "0.13", path = "../zcash_primitives", default-features = false }
# Dependencies exposed in a public API: # Dependencies exposed in a public API:
# (Breaking upgrades to these require a breaking upgrade to this crate.) # (Breaking upgrades to these require a breaking upgrade to this crate.)

View File

@ -16,7 +16,7 @@ rust-version = "1.65"
[dependencies] [dependencies]
zcash_client_backend = { version = "=0.10.0-rc.4", path = "../zcash_client_backend", features = ["unstable-serialization", "unstable-spanning-tree"]} zcash_client_backend = { version = "=0.10.0-rc.4", path = "../zcash_client_backend", features = ["unstable-serialization", "unstable-spanning-tree"]}
zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" } zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" }
zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", default-features = false } zcash_primitives = { version = "0.13", path = "../zcash_primitives", default-features = false }
# Dependencies exposed in a public API: # Dependencies exposed in a public API:
# (Breaking upgrades to these require a breaking upgrade to this crate.) # (Breaking upgrades to these require a breaking upgrade to this crate.)
@ -61,7 +61,7 @@ regex = "1.4"
tempfile = "3.5.0" tempfile = "3.5.0"
zcash_note_encryption = "0.4" zcash_note_encryption = "0.4"
zcash_proofs = { version = "=0.13.0-rc.1", path = "../zcash_proofs" } zcash_proofs = { version = "=0.13.0-rc.1", path = "../zcash_proofs" }
zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", features = ["test-dependencies"] } zcash_primitives = { version = "0.13", path = "../zcash_primitives", features = ["test-dependencies"] }
zcash_client_backend = { version = "=0.10.0-rc.4", path = "../zcash_client_backend", features = ["test-dependencies", "unstable-serialization", "unstable-spanning-tree"] } zcash_client_backend = { version = "=0.10.0-rc.4", path = "../zcash_client_backend", features = ["test-dependencies", "unstable-serialization", "unstable-spanning-tree"] }
zcash_address = { version = "0.3", path = "../components/zcash_address", features = ["test-dependencies"] } zcash_address = { version = "0.3", path = "../components/zcash_address", features = ["test-dependencies"] }

View File

@ -11,7 +11,7 @@ rust-version = "1.65"
[dependencies] [dependencies]
blake2b_simd = "1" blake2b_simd = "1"
zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", default-features = false, features = ["zfuture" ] } zcash_primitives = { version = "0.13", path = "../zcash_primitives", default-features = false, features = ["zfuture" ] }
[dev-dependencies] [dev-dependencies]
ff = "0.13" ff = "0.13"

View File

@ -6,10 +6,8 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
### Added
- Trait implementation `Mul<usize>` for `NonNegativeAmount`.
## [0.13.0-rc.1] - 2023-09-08 ## [0.13.0] - 2023-09-25
### Added ### Added
- `zcash_primitives::consensus::BlockHeight::saturating_sub` - `zcash_primitives::consensus::BlockHeight::saturating_sub`
- `zcash_primitives::transaction::builder`: - `zcash_primitives::transaction::builder`:
@ -26,6 +24,7 @@ and this library adheres to Rust's notion of
- `Add<NonNegativeAmount> for Option<NonNegativeAmount>` - `Add<NonNegativeAmount> for Option<NonNegativeAmount>`
- `Sub<NonNegativeAmount> for NonNegativeAmount` - `Sub<NonNegativeAmount> for NonNegativeAmount`
- `Sub<NonNegativeAmount> for Option<NonNegativeAmount>` - `Sub<NonNegativeAmount> for Option<NonNegativeAmount>`
- `Mul<usize> for NonNegativeAmount`
- `zcash_primitives::block::BlockHash::try_from_slice` - `zcash_primitives::block::BlockHash::try_from_slice`
### Changed ### Changed

View File

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

View File

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