Skip to content

Commit

Permalink
Merge pull request #92 from zcash/shardtree-0.1.0
Browse files Browse the repository at this point in the history
`incrementalmerkletree 0.5.0`, `bridgetree 0.4.0`, `shardtree 0.1.0`
  • Loading branch information
str4d authored Sep 8, 2023
2 parents 9e7f5f0 + 2dece01 commit 2ce1858
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
6 changes: 6 additions & 0 deletions bridgetree/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions bridgetree/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bridgetree"
version = "0.3.0"
version = "0.4.0"
authors = [
"Kris Nuttycombe <[email protected]>",
"Sean Bowe <[email protected]>",
Expand All @@ -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]
Expand Down
3 changes: 3 additions & 0 deletions incrementalmerkletree/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion incrementalmerkletree/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"Kris Nuttycombe <[email protected]>",
Expand Down
3 changes: 3 additions & 0 deletions shardtree/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
6 changes: 3 additions & 3 deletions shardtree/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shardtree"
version = "0.0.0"
version = "0.1.0"
authors = [
"Kris Nuttycombe <[email protected]>",
]
Expand All @@ -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]
Expand Down

0 comments on commit 2ce1858

Please sign in to comment.