Bump zcash_encoding and zcash_address crate versions to 0.2.

This commit is contained in:
Sean Bowe 2022-10-19 16:51:59 -06:00
parent c34cacaae6
commit bd7f9d7c3c
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
8 changed files with 13 additions and 10 deletions

View File

@ -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`

View File

@ -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"

View File

@ -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

View File

@ -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>",

View File

@ -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"]

View File

@ -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 = []

View File

@ -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]

View File

@ -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"