Merge pull request #92 from zcash/shardtree-0.1.0

`incrementalmerkletree 0.5.0`, `bridgetree 0.4.0`, `shardtree 0.1.0`
This commit is contained in:
str4d 2023-09-08 18:00:18 +01:00 committed by GitHub
commit 2ce18583d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 19 additions and 7 deletions

View File

@ -7,6 +7,12 @@ and this project adheres to Rust's notion of
## [Unreleased]
## [0.4.0] - 2023-09-08
### Changed
- Migrated to `incrementalmerkletree 0.5`.
## [bridgetree-v0.3.0] - 2023-06-05
### Changed

View File

@ -1,6 +1,6 @@
[package]
name = "bridgetree"
version = "0.3.0"
version = "0.4.0"
authors = [
"Kris Nuttycombe <kris@nutty.land>",
"Sean Bowe <ewillbefull@gmail.com>",
@ -14,11 +14,11 @@ categories = ["algorithms", "data-structures"]
rust-version = "1.60"
[dependencies]
incrementalmerkletree = { version = "0.4", path = "../incrementalmerkletree" }
incrementalmerkletree = { version = "0.5", path = "../incrementalmerkletree" }
proptest = { version = "1.0.0", optional = true }
[dev-dependencies]
incrementalmerkletree = { version = "0.4", path = "../incrementalmerkletree", features = ["test-dependencies"] }
incrementalmerkletree = { version = "0.5", path = "../incrementalmerkletree", features = ["test-dependencies"] }
proptest = "1.0.0"
[features]

View File

@ -6,6 +6,9 @@ and this project adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
## [0.5.0] - 2023-09-08
### Added
- `incrementalmerkletree::Address::{common_ancestor, is_left_child}`
- `incrementalmerkletree::Level::new`

View File

@ -1,7 +1,7 @@
[package]
name = "incrementalmerkletree"
description = "Common types, interfaces, and utilities for Merkle tree data structures"
version = "0.4.0"
version = "0.5.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Kris Nuttycombe <kris@nutty.land>",

View File

@ -6,4 +6,7 @@ and this project adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
## [0.1.0] - 2023-09-08
Initial release!

View File

@ -1,6 +1,6 @@
[package]
name = "shardtree"
version = "0.0.0"
version = "0.1.0"
authors = [
"Kris Nuttycombe <kris@nutty.land>",
]
@ -20,13 +20,13 @@ rustdoc-args = ["--cfg", "docsrs"]
assert_matches = { version = "1.5", optional = true }
bitflags = "2"
either = "1.8"
incrementalmerkletree = { version = "0.4", path = "../incrementalmerkletree" }
incrementalmerkletree = { version = "0.5", path = "../incrementalmerkletree" }
proptest = { version = "1.0.0", optional = true }
tracing = "0.1"
[dev-dependencies]
assert_matches = "1.5"
incrementalmerkletree = { version = "0.4", path = "../incrementalmerkletree", features = ["test-dependencies"] }
incrementalmerkletree = { version = "0.5", path = "../incrementalmerkletree", features = ["test-dependencies"] }
proptest = "1.0.0"
[features]