Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release shardtree version 0.5.0 #117

Merged
merged 2 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ categories = ["algorithms", "data-structures"]
[workspace.dependencies]
# Intra-workspace dependencies
incrementalmerkletree = { version = "0.7", path = "incrementalmerkletree" }
incrementalmerkletree-testing = { version = "0.1", path = "incrementalmerkletree-testing" }
incrementalmerkletree-testing = { version = "0.2", path = "incrementalmerkletree-testing" }

# Testing
proptest = "1"
2 changes: 2 additions & 0 deletions incrementalmerkletree-testing/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.2.0] - 2024-10-04

This release includes a significant refactoring and rework of several methods
of the `incrementalmerkletree_testing::Tree` trait. Please read the notes for
this release carefully as the semantics of important methods have changed.
Expand Down
2 changes: 1 addition & 1 deletion incrementalmerkletree-testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "incrementalmerkletree-testing"
description = "Common types, interfaces, and utilities for testing Merkle tree data structures"
version = "0.1.0"
version = "0.2.0"
authors = [
"Kris Nuttycombe <[email protected]>",
"Sean Bowe <[email protected]>",
Expand Down
2 changes: 2 additions & 0 deletions shardtree/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.5.0] - 2024-10-04

This release includes a significant refactoring and rework of several methods
of the `shardtree::ShardTree` type and the `shardtree::store::ShardStore`
trait. Please read the notes for this release carefully as the semantics of
Expand Down
2 changes: 1 addition & 1 deletion shardtree/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "shardtree"
description = "A space-efficient Merkle tree with witnessing of marked leaves, checkpointing & state restoration."
version = "0.4.0"
version = "0.5.0"
authors = [
"Kris Nuttycombe <[email protected]>",
]
Expand Down
Loading