Merge pull request #1314 from zcash/release-zcash_keys-0.2.0

Release zcash_keys version 0.2.0
This commit is contained in:
Kris Nuttycombe 2024-03-25 12:13:50 -06:00 committed by GitHub
commit b68d97b614
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 9 additions and 4 deletions

2
Cargo.lock generated
View File

@ -3133,7 +3133,7 @@ dependencies = [
[[package]]
name = "zcash_keys"
version = "0.1.1"
version = "0.2.0"
dependencies = [
"bech32",
"blake2b_simd",

View File

@ -32,7 +32,7 @@ equihash = { version = "0.2", path = "components/equihash" }
zcash_address = { version = "0.3", path = "components/zcash_address" }
zcash_client_backend = { version = "0.11", path = "zcash_client_backend" }
zcash_encoding = { version = "0.2", path = "components/zcash_encoding" }
zcash_keys = { version = "0.1", path = "zcash_keys" }
zcash_keys = { version = "0.2", path = "zcash_keys" }
zcash_protocol = { version = "0.1", path = "components/zcash_protocol" }
zcash_note_encryption = "0.4"

View File

@ -6,12 +6,16 @@ and this library adheres to Rust's notion of
## [Unreleased]
## [0.2.0] - 2024-03-25
### Added
- `zcash_keys::address::Address::has_receiver`
- `impl Display for zcash_keys::keys::AddressGenerationError`
- `impl std::error::Error for zcash_keys::keys::AddressGenerationError`
- `impl From<hdwallet::error::Error> for zcash_keys::keys::DerivationError`
when the `transparent-inputs` feature is enabled.
- `zcash_keys::keys::DecodingError`
- `zcash_keys::keys::UnifiedFullViewingKey::to_unified_incoming_viewing_key`
- `zcash_keys::keys::UnifiedFullViewingKey::{parse, to_unified_incoming_viewing_key}`
- `zcash_keys::keys::UnifiedIncomingViewingKey`
### Changed
@ -22,6 +26,7 @@ and this library adheres to Rust's notion of
- Added `DiversifierSpaceExhausted` variant.
- At least one of the `orchard`, `sapling`, or `transparent-inputs` features
must be enabled for the `keys` module to be accessible.
- Updated to `zcash_primitives-0.15.0`
### Removed
- `UnifiedFullViewingKey::new` has been placed behind the `test-dependencies`

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_keys"
description = "Zcash key and address management"
version = "0.1.1"
version = "0.2.0"
authors = [
"Jack Grigg <jack@z.cash>",
"Kris Nuttycombe <kris@electriccoin.co>"