Skip to content

Commit

Permalink
Release incrementalmerkletree version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nuttycom committed Aug 12, 2024
1 parent 337f591 commit 1f86f12
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions bridgetree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ categories = ["algorithms", "data-structures"]
rust-version = "1.60"

[dependencies]
incrementalmerkletree = { version = "0.5", path = "../incrementalmerkletree" }
incrementalmerkletree = { version = "0.6", path = "../incrementalmerkletree" }
proptest = { version = "1.0.0", optional = true }

[dev-dependencies]
incrementalmerkletree = { version = "0.5", path = "../incrementalmerkletree", features = ["test-dependencies"] }
incrementalmerkletree = { version = "0.6", path = "../incrementalmerkletree", features = ["test-dependencies"] }
proptest = "1.0.0"

[features]
Expand Down
2 changes: 2 additions & 0 deletions incrementalmerkletree/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to Rust's notion of

## Unreleased

## [0.6.0] - 2024-08-12

### Added
- `incrementalmerkletree::Marking`
- `incrementalmerkletree::Level::ZERO`
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.5.1"
version = "0.6.0"
authors = [
"Sean Bowe <[email protected]>",
"Kris Nuttycombe <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions shardtree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ rustdoc-args = ["--cfg", "docsrs"]
assert_matches = { version = "1.5", optional = true }
bitflags = "2"
either = "1.8"
incrementalmerkletree = { version = "0.5", path = "../incrementalmerkletree" }
incrementalmerkletree = { version = "0.6", path = "../incrementalmerkletree" }
proptest = { version = "1.0.0", optional = true }
tracing = "0.1"

[dev-dependencies]
assert_matches = "1.5"
incrementalmerkletree = { version = "0.5", path = "../incrementalmerkletree", features = ["test-dependencies"] }
incrementalmerkletree = { version = "0.6", path = "../incrementalmerkletree", features = ["test-dependencies"] }
proptest = "1.0.0"

[features]
Expand Down

0 comments on commit 1f86f12

Please sign in to comment.