Skip to content

Commit

Permalink
chore(release): 1.3.0 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
antouhou authored Mar 14, 2023
1 parent fa99c5d commit abe3453
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rs_merkle"
version = "1.2.0"
version = "1.3.0"
authors = ["Anton Suprunchuk <[email protected]>"]
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"
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit abe3453

Please sign in to comment.