Release zcash_keys version 0.2.0

This commit is contained in:
Kris Nuttycombe 2024-03-25 11:34:21 -06:00
parent 181e8981b2
commit f8c021546d
4 changed files with 9 additions and 4 deletions

2
Cargo.lock generated
View File

@ -3133,7 +3133,7 @@ dependencies = [
[[package]] [[package]]
name = "zcash_keys" name = "zcash_keys"
version = "0.1.1" version = "0.2.0"
dependencies = [ dependencies = [
"bech32", "bech32",
"blake2b_simd", "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_address = { version = "0.3", path = "components/zcash_address" }
zcash_client_backend = { version = "0.11", path = "zcash_client_backend" } zcash_client_backend = { version = "0.11", path = "zcash_client_backend" }
zcash_encoding = { version = "0.2", path = "components/zcash_encoding" } 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_protocol = { version = "0.1", path = "components/zcash_protocol" }
zcash_note_encryption = "0.4" zcash_note_encryption = "0.4"

View File

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

View File

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