From 1bb64558bb46e19aaab65aef27fe9d2a742a9991 Mon Sep 17 00:00:00 2001 From: Aitor Ruano Date: Thu, 23 Jan 2020 10:22:10 +0100 Subject: [PATCH] update version strings --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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. ///