Skip to content

Commit 8bab449

Browse files
authored
Merge pull request #137 from zcash/bridgetree-0.7.0
bridgetree 0.7.0
2 parents a67b17f + 1be5699 commit 8bab449

File tree

4 files changed

+23
-9
lines changed

4 files changed

+23
-9
lines changed

bridgetree/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to Rust's notion of
77

88
## [Unreleased]
99

10+
## [0.7.0] - 2025-06-04
11+
12+
### Changed
13+
- Migrated to `incrementalmerkletree 0.8`.
14+
1015
## [0.6.0] - 2024-09-25
1116

1217
### Changed

bridgetree/Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bridgetree/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bridgetree"
33
description = "A space-efficient Merkle tree designed for linear appends with witnessing of marked leaves, checkpointing & state restoration."
4-
version = "0.6.0"
4+
version = "0.7.0"
55
authors = [
66
"Kris Nuttycombe <[email protected]>",
77
"Sean Bowe <[email protected]>",
@@ -14,12 +14,12 @@ license = "MIT OR Apache-2.0"
1414
categories = ["algorithms", "data-structures"]
1515

1616
[dependencies]
17-
incrementalmerkletree = "0.7"
17+
incrementalmerkletree = "0.8"
1818
proptest = { version = "1", optional = true }
1919

2020
[dev-dependencies]
21-
incrementalmerkletree = { version = "0.7", features = ["test-dependencies"] }
22-
incrementalmerkletree-testing = "0.1"
21+
incrementalmerkletree = { version = "0.8", features = ["test-dependencies"] }
22+
incrementalmerkletree-testing = "=0.2.0-backcompat.0.8"
2323
proptest = "1"
2424

2525
[features]

incrementalmerkletree-testing/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to Rust's notion of
77

88
## Unreleased
99

10+
## [0.2.0-backcompat.0.8] - 2025-06-04
11+
12+
This is a backwards-compatible release based on 0.1.0 (it does not include the
13+
major testing refactor from the final 0.2.0), to enable crates using the 0.1.0
14+
test suite to migrate to later `incrementalmerkletree` versions.
15+
16+
### Changed
17+
- Updated to `incrementalmerkletree 0.8`
18+
1019
## [0.3.0] - 2025-01-30
1120

1221
### Changed

0 commit comments

Comments
 (0)