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

poseidon-merkle: Bump to v0.7.0 #90

Merged
merged 2 commits into from
Aug 14, 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
10 changes: 9 additions & 1 deletion poseidon-merkle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0] - 2024-08-14

### Changed

- Update `dusk-plonk` to v0.20
- Update `dusk-poseidon` to v0.40

## [0.6.1] - 2024-08-28

### Added
Expand Down Expand Up @@ -66,7 +73,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#58]: https://github.com/dusk-network/merkle/issues/58

<!-- VERSIONS -->
[Unreleased]: https://github.com/dusk-network/merkle/compare/poseidon-merkle_v0.6.1...HEAD
[Unreleased]: https://github.com/dusk-network/merkle/compare/poseidon-merkle_v0.7.0...HEAD
[0.7.0]: https://github.com/dusk-network/merkle/compare/poseidon-merkle_v0.6.1...poseidon-merkle_v0.7.0
[0.6.1]: https://github.com/dusk-network/merkle/compare/poseidon-merkle_v0.6.0...poseidon-merkle_v0.6.1
[0.6.0]: https://github.com/dusk-network/merkle/compare/poseidon-merkle_v0.5.0...poseidon-merkle_v0.6.0
[0.5.0]: https://github.com/dusk-network/merkle/compare/poseidon-merkle_v0.4.0...poseidon-merkle_v0.5.0
Expand Down
6 changes: 3 additions & 3 deletions poseidon-merkle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "poseidon-merkle"
description = "Crate implementing Dusk Network's Merkle tree with the poseidon hash function"
version = "0.6.1"
version = "0.7.0"

categories = ["data-structures", "no-std"]
keywords = ["tree", "merkle", "poseidon", "data", "structure"]
Expand All @@ -17,9 +17,9 @@ license = "MPL-2.0"
[dependencies]
dusk-bytes = "0.1"
dusk-merkle = "0.5"
dusk-poseidon = "0.39"
dusk-poseidon = "0.40"
dusk-bls12_381 = { version = "0.13", default-features = false }
dusk-plonk = { version = "0.19", optional = true, default-features = false }
dusk-plonk = { version = "0.20", optional = true, default-features = false }
rkyv = { version = "0.7", optional = true, default-features = false }
bytecheck = { version = "0.6", optional = true, default-features = false }

Expand Down