From abe3453e28a461974fa9c237313f8394ded054cc Mon Sep 17 00:00:00 2001 From: Anton Suprunchuk Date: Tue, 14 Mar 2023 19:24:09 +0800 Subject: [PATCH] chore(release): 1.3.0 (#24) --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- README.md | 10 +++++++++- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c45898..eaf1069 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# [1.3.0](https://github.com/antouhou/rs-merkle/compare/v1.2.0...v1.3.0) (2023-03-14) + + +### Features + +* add support for CosmWasm WASM VM ([#13](https://github.com/antouhou/rs-merkle/pull/18)) ([fa99c5d](https://github.com/antouhou/rs-merkle/commit/fa99c5d013595a4daf71ae58f501f24d35bbc36f)) (Thanks to @matthiasgoergens and @sashaduke) + + # [1.2.0](https://github.com/antouhou/rs-merkle/compare/v1.1.0...v1.2.0) (2021-10-23) diff --git a/Cargo.toml b/Cargo.toml index 3024113..6ba4d5c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rs_merkle" -version = "1.2.0" +version = "1.3.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 489137f..29a015f 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,15 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -rs_merkle = "1.2" +rs_merkle = "1.3" +``` + +This crate also can be used on the no-std targets. To use as a dependency +in a project that requires no-std, disable default features: + +```toml +[dependencies] +rs_merkle = { version = "1.3", default-features = false } ``` ## Documentation