From a29a05d1231f2109f1eedfb953583db3cfc3635c Mon Sep 17 00:00:00 2001 From: Anton Suprunchuk Date: Wed, 10 May 2023 17:42:02 +0800 Subject: [PATCH] chore(release): 1.4.0 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eaf1069..306b930 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# [1.4.0](https://github.com/antouhou/rs-merkle/compare/v1.3.0...v1.4.0) (2023-05-10) + + +### Features + +* add support for Sha384 hashes ([#27](https://github.com/antouhou/rs-merkle/pull/27)) ([3388777](https://github.com/antouhou/rs-merkle/commit/3388777a3f4cc7894df1049a7c95bc873de24c35)) (Thanks to @imotai) + + # [1.3.0](https://github.com/antouhou/rs-merkle/compare/v1.2.0...v1.3.0) (2023-03-14) diff --git a/Cargo.toml b/Cargo.toml index 6ba4d5c..180dc09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rs_merkle" -version = "1.3.0" +version = "1.4.0" 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" diff --git a/README.md b/README.md index 29a015f..7620652 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -rs_merkle = "1.3" +rs_merkle = "1.4" ``` This crate also can be used on the no-std targets. To use as a dependency @@ -45,7 +45,7 @@ in a project that requires no-std, disable default features: ```toml [dependencies] -rs_merkle = { version = "1.3", default-features = false } +rs_merkle = { version = "1.4", default-features = false } ``` ## Documentation