Release zcash_keys version 0.2.0
This commit is contained in:
parent
181e8981b2
commit
f8c021546d
|
@ -3133,7 +3133,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "zcash_keys"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"bech32",
|
||||
"blake2b_simd",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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`
|
||||
|
|
|
@ -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>"
|
||||
|
|
Loading…
Reference in New Issue