Skip to content

Commit

Permalink
Merge pull request #11 from slowli/prepare-v0.3.0
Browse files Browse the repository at this point in the history
Prepare release 0.3.0
  • Loading branch information
slowli committed Nov 30, 2020
2 parents ed9e724 + 66acb7d commit d5ef803
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The project adheres to [Semantic Versioning](http:https://semver.org/spec/v2.0.0.html)

## [Unreleased]

## 0.3.0 - 2020-11-30

### Added

- Add `SecretTree::create_secret` as a high-level alternative to `fill()`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "secret-tree"
edition = "2018"
version = "0.2.0"
version = "0.3.0"
authors = [
"Alex Ostrovski <[email protected]>",
"Pavel Mukhanov <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add this to your `Crate.toml`:

```toml
[dependencies]
secret-tree = "0.2.0"
secret-tree = "0.3.0"
```

See crate documentation for more details how to use the crate.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
//! [Pedersen commitments]: https://en.wikipedia.org/wiki/Commitment_scheme

#![cfg_attr(not(feature = "std"), no_std)]
#![doc(html_root_url = "https://docs.rs/secret-tree/0.2.0")]
#![doc(html_root_url = "https://docs.rs/secret-tree/0.3.0")]
#![warn(missing_docs, missing_debug_implementations)]
#![warn(clippy::all, clippy::pedantic)]
#![allow(
Expand Down

0 comments on commit d5ef803

Please sign in to comment.