Merge pull request #129 from zcash/release/shardtree-0.6.1
Release shardtree-v0.6.1
This commit is contained in:
commit
61c947bde3
|
@ -318,7 +318,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "shardtree"
|
name = "shardtree"
|
||||||
version = "0.6.0"
|
version = "0.6.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert_matches",
|
"assert_matches",
|
||||||
"bitflags 2.4.1",
|
"bitflags 2.4.1",
|
||||||
|
|
|
@ -7,16 +7,20 @@ and this project adheres to Rust's notion of
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
## [0.6.0] - 2025-01-28
|
## [0.6.1] - 2025-01-30
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Update to `incrementalmerkletree 0.8.1`
|
- Update to `incrementalmerkletree 0.8.1`, `incrementalmerkletree-testing 0.3.0`.
|
||||||
- `shardtree::BatchInsertionResult.max_insert_position` now has type `Position`
|
- `shardtree::BatchInsertionResult.max_insert_position` now has type `Position`
|
||||||
instead of `Option<Position>` (all APIs return `Option<BatchInsertionResult>`
|
instead of `Option<Position>` (all APIs return `Option<BatchInsertionResult>`
|
||||||
and use `None` at that level to represent "no leaves inserted").
|
and use `None` at that level to represent "no leaves inserted").
|
||||||
- `shardtree::LocatedTree::from_parts` now returns `Option<Self>` (returning
|
- `shardtree::LocatedTree::from_parts` now returns `Option<Self>` (returning
|
||||||
`None` if the provided `Address` and `Tree` are inconsistent).
|
`None` if the provided `Address` and `Tree` are inconsistent).
|
||||||
|
|
||||||
|
## [0.6.0] - 2025-01-28
|
||||||
|
|
||||||
|
YANKED due to dependency incompatibilities, please use `shardtree 0.6.1` instead.
|
||||||
|
|
||||||
## [0.5.0] - 2024-10-04
|
## [0.5.0] - 2024-10-04
|
||||||
|
|
||||||
This release includes a significant refactoring and rework of several methods
|
This release includes a significant refactoring and rework of several methods
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "shardtree"
|
name = "shardtree"
|
||||||
description = "A space-efficient Merkle tree with witnessing of marked leaves, checkpointing & state restoration."
|
description = "A space-efficient Merkle tree with witnessing of marked leaves, checkpointing & state restoration."
|
||||||
version = "0.6.0"
|
version = "0.6.1"
|
||||||
authors = [
|
authors = [
|
||||||
"Kris Nuttycombe <kris@nutty.land>",
|
"Kris Nuttycombe <kris@nutty.land>",
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue