Bump zcash_encoding and zcash_address crate versions to 0.2.
This commit is contained in:
parent
c34cacaae6
commit
bd7f9d7c3c
|
@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
|
|||
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.2.0] - 2022-10-19
|
||||
### Added
|
||||
- `zcash_address::ConversionError`
|
||||
- `zcash_address::TryFromAddress`
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "zcash_address"
|
||||
description = "Zcash address parsing and serialization"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = [
|
||||
"Jack Grigg <jack@electriccoin.co>",
|
||||
]
|
||||
|
@ -18,7 +18,7 @@ keywords = ["zcash", "address", "sapling", "unified"]
|
|||
bech32 = "0.8"
|
||||
bs58 = { version = "0.4", features = ["check"] }
|
||||
f4jumble = { version = "0.1", path = "../f4jumble" }
|
||||
zcash_encoding = { version = "0.1", path = "../zcash_encoding" }
|
||||
zcash_encoding = { version = "0.2", path = "../zcash_encoding" }
|
||||
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.3.0"
|
||||
|
|
|
@ -7,6 +7,7 @@ and this library adheres to Rust's notion of
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.2.0] - 2022-10-19
|
||||
### Changed
|
||||
- MSRV is now 1.56.1
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "zcash_encoding"
|
||||
description = "Binary encodings used throughout the Zcash ecosystem."
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = [
|
||||
"Jack Grigg <jack@electriccoin.co>",
|
||||
"Kris Nuttycombe <kris@electriccoin.co>",
|
||||
|
|
|
@ -42,8 +42,8 @@ sha2 = { version = "0.10.1", optional = true }
|
|||
subtle = "2.2.3"
|
||||
time = "0.2"
|
||||
tracing = "0.1"
|
||||
zcash_address = { version = "0.1", path = "../components/zcash_address" }
|
||||
zcash_encoding = { version = "0.1", path = "../components/zcash_encoding" }
|
||||
zcash_address = { version = "0.2", path = "../components/zcash_address" }
|
||||
zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" }
|
||||
zcash_note_encryption = { version = "0.2", path = "../components/zcash_note_encryption" }
|
||||
zcash_primitives = { version = "0.8", path = "../zcash_primitives" }
|
||||
|
||||
|
@ -56,7 +56,7 @@ proptest = "1.0.0"
|
|||
rand_xorshift = "0.3"
|
||||
tempfile = "3.1.0"
|
||||
zcash_proofs = { version = "0.8", path = "../zcash_proofs" }
|
||||
zcash_address = { version = "0.1", path = "../components/zcash_address", features = ["test-dependencies"] }
|
||||
zcash_address = { version = "0.2", path = "../components/zcash_address", features = ["test-dependencies"] }
|
||||
|
||||
[features]
|
||||
transparent-inputs = ["ripemd", "hdwallet", "sha2", "secp256k1", "zcash_primitives/transparent-inputs"]
|
||||
|
|
|
@ -36,7 +36,7 @@ regex = "1.4"
|
|||
tempfile = "3"
|
||||
zcash_proofs = { version = "0.8", path = "../zcash_proofs" }
|
||||
zcash_primitives = { version = "0.8", path = "../zcash_primitives", features = ["test-dependencies"] }
|
||||
zcash_address = { version = "0.1", path = "../components/zcash_address", features = ["test-dependencies"] }
|
||||
zcash_address = { version = "0.2", path = "../components/zcash_address", features = ["test-dependencies"] }
|
||||
|
||||
[features]
|
||||
mainnet = []
|
||||
|
|
|
@ -17,7 +17,7 @@ zcash_primitives = { version = "0.8", path = "../zcash_primitives", features = [
|
|||
ff = "0.12"
|
||||
jubjub = "0.9"
|
||||
rand_core = "0.6"
|
||||
zcash_address = { version = "0.1", path = "../components/zcash_address" }
|
||||
zcash_address = { version = "0.2", path = "../components/zcash_address" }
|
||||
zcash_proofs = { version = "0.8", path = "../zcash_proofs" }
|
||||
|
||||
[features]
|
||||
|
|
|
@ -46,8 +46,8 @@ ripemd = { version = "0.1", optional = true }
|
|||
secp256k1 = { version = "0.21", optional = true }
|
||||
sha2 = "0.9"
|
||||
subtle = "2.2.3"
|
||||
zcash_address = { version = "0.1", path = "../components/zcash_address" }
|
||||
zcash_encoding = { version = "0.1", path = "../components/zcash_encoding" }
|
||||
zcash_address = { version = "0.2", path = "../components/zcash_address" }
|
||||
zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" }
|
||||
|
||||
[dependencies.zcash_note_encryption]
|
||||
version = "0.2"
|
||||
|
|
Loading…
Reference in New Issue