update version strings
This commit is contained in:
parent
9da260453c
commit
1bb64558bb
|
@ -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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "sharks"
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
authors = ["Aitor Ruano <codearm@pm.me>"]
|
||||
description = "Fast, small and secure Shamir's Secret Sharing library crate"
|
||||
homepage = "https://github.com/c0dearm/sharks"
|
||||
|
|
|
@ -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.
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue