Merge pull request #15 from zcash/release-0.1.1

Release v0.1.1
This commit is contained in:
Kris Nuttycombe 2024-03-14 16:25:01 -06:00 committed by GitHub
commit 5805178fc7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 2 deletions

View File

@ -7,9 +7,12 @@ and this library adheres to Rust's notion of
## [Unreleased] ## [Unreleased]
## [0.1.1] - 2024-03-14
### Added ### Added
- `impl {Clone, Copy, Debug, PartialOrd, Ord, PartialEq, Eq, Hash}` for - `impl {Clone, Copy, Debug, PartialOrd, Ord, PartialEq, Eq, Hash}` for
`zip32::fingerprint::SeedFingerprint` `zip32::fingerprint::SeedFingerprint`
- `zip32::fingerprint::SeedFingerprint::from_bytes`
## [0.1.0] - 2023-12-06 ## [0.1.0] - 2023-12-06
Initial release. Initial release.

2
Cargo.lock generated
View File

@ -51,7 +51,7 @@ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
[[package]] [[package]]
name = "zip32" name = "zip32"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"assert_matches", "assert_matches",
"blake2b_simd", "blake2b_simd",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "zip32" name = "zip32"
version = "0.1.0" version = "0.1.1"
authors = [ authors = [
"Jack Grigg <jack@electriccoin.co>", "Jack Grigg <jack@electriccoin.co>",
"Kris Nuttycombe <kris@electriccoin.co>", "Kris Nuttycombe <kris@electriccoin.co>",