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 sapling-crypto version 0.2.0 #139

Merged
merged 1 commit into from
Aug 12, 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this library adheres to Rust's notion of

## [Unreleased]

## [0.2.0] - 2024-08-12

### Changed
- Updated to `incrementalmerkletree` version `0.6`.

## [0.1.3] - 2024-03-25

### Added
Expand Down
8 changes: 5 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sapling-crypto"
version = "0.1.3"
version = "0.2.0"
authors = [
"Sean Bowe <sean@electriccoin.co>",
"Jack Grigg <jack@electriccoin.co>",
Expand Down Expand Up @@ -50,7 +50,7 @@ tracing = "0.1"

# Note Commitment Trees
bitvec = "1"
incrementalmerkletree = { version = "0.5", features = ["legacy-api"] }
incrementalmerkletree = { version = "0.6", features = ["legacy-api"] }

# Note encryption
zcash_note_encryption = { version = "0.4", features = ["pre-zip-212"] }
Expand All @@ -72,7 +72,7 @@ zip32 = "0.1"
[dev-dependencies]
chacha20poly1305 = "0.10"
criterion = "0.4"
incrementalmerkletree = { version = "0.5", features = ["legacy-api", "test-dependencies"] }
incrementalmerkletree = { version = "0.6", features = ["legacy-api", "test-dependencies"] }
proptest = "1"
rand_xorshift = "0.3"

Expand Down
Loading