update version strings

This commit is contained in:
Aitor Ruano 2020-01-23 10:22:10 +01:00
parent 9da260453c
commit 1bb64558bb
3 changed files with 6 additions and 2 deletions

View File

@ -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/), 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). 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 ## [0.3.0] - 2020-01-22
### Added ### Added
- Share struct which allows to convert from/to byte vectors - Share struct which allows to convert from/to byte vectors

View File

@ -1,6 +1,6 @@
[package] [package]
name = "sharks" name = "sharks"
version = "0.3.0" version = "0.3.1"
authors = ["Aitor Ruano <codearm@pm.me>"] authors = ["Aitor Ruano <codearm@pm.me>"]
description = "Fast, small and secure Shamir's Secret Sharing library crate" description = "Fast, small and secure Shamir's Secret Sharing library crate"
homepage = "https://github.com/c0dearm/sharks" homepage = "https://github.com/c0dearm/sharks"

View File

@ -64,7 +64,7 @@ impl Sharks {
math::get_evaluator(polys) 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, /// If the number of distinct shares is less than the minimum threshold an `Err` is returned,
/// otherwise an `Ok` containing the secret. /// otherwise an `Ok` containing the secret.
/// ///