diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dca2df..c08be68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.1] - 2020-01-23 +### Changed +- Sharks recover method now accepts any iterable collection + ## [0.3.0] - 2020-01-22 ### Added - Share struct which allows to convert from/to byte vectors diff --git a/Cargo.toml b/Cargo.toml index abe5a4b..11eea96 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sharks" -version = "0.3.0" +version = "0.3.1" authors = ["Aitor Ruano "] description = "Fast, small and secure Shamir's Secret Sharing library crate" homepage = "https://github.com/c0dearm/sharks" diff --git a/src/lib.rs b/src/lib.rs index e5b9b50..a9d673e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -64,7 +64,7 @@ impl Sharks { math::get_evaluator(polys) } - /// Given a collection of shares, recovers the original secret. + /// Given an iterable collection of shares, recovers the original secret. /// If the number of distinct shares is less than the minimum threshold an `Err` is returned, /// otherwise an `Ok` containing the secret. ///