-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #684 from zcash/bump-some-versions
Bump versions for f4jumble, zcash_address, zcash_encoding and zcash_history crates
- Loading branch information
Showing
9 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>", | ||
] | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>", | ||
"Kris Nuttycombe <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "zcash_primitives" | ||
description = "Rust implementations of the Zcash primitives" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
"Kris Nuttycombe <[email protected]>" | ||
|
@@ -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" | ||
|