From ae7bc91b8592405a369a7bf1cfdb7f24525f2cca Mon Sep 17 00:00:00 2001 From: Anton Suprunchuk Date: Thu, 11 Jan 2024 21:14:31 +0700 Subject: [PATCH] chore(release): 1.4.2 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 706382f..d37ed88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# [1.4.2](https://github.com/antouhou/rs-merkle/compare/v1.4.0...v1.4.1) (2024-01-11) + + +### Fixes + +* sorting indexes in the proof verification, resulting in a false negative during verification in some cases ([#30](https://github.com/antouhou/rs-merkle/pull/30)) ([bc42846](https://github.com/antouhou/rs-merkle/commit/bc42846dc4cb185efc04aef173b3db10e8c54661)) (Thanks to @themighty1) + + # [1.4.1](https://github.com/antouhou/rs-merkle/compare/v1.4.0...v1.4.1) (2023-05-22) diff --git a/Cargo.toml b/Cargo.toml index 652efb9..d23761e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rs_merkle" -version = "1.4.1" +version = "1.4.2" authors = ["Anton Suprunchuk "] description = "The most advanced Merkle Tree library for Rust. Supports creating and verifying proofs, multi-proofs, as well as advanced features, such as tree diffs, transactional changes, and rollbacks" edition = "2018"