Skip to content

Commit 16dcf28

Browse files
committed
Bumped version number.
1 parent d474d34 commit 16dcf28

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sskr"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
description = "Sharded Secret Key Reconstruction (SSKR) for Rust."
66
authors = ["Blockchain Commons"]
@@ -14,8 +14,8 @@ documentation = "https://docs.rs/sskr"
1414
[dependencies]
1515
bc-rand = "0.1.0"
1616

17-
bc-shamir = { path = "../bc-shamir-rust" }
18-
# bc-shamir = "0.2.0"
17+
# bc-shamir = { path = "../bc-shamir-rust" }
18+
bc-shamir = "0.3.0"
1919

2020
thiserror = "1.0.48"
2121

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Sharded Secret Key Reconstruction (SSKR) is a protocol for splitting a *secret*
1414

1515
```toml
1616
[dependencies]
17-
sskr = "0.2.0"
17+
sskr = "0.3.0"
1818
```
1919

2020
## Specification
@@ -29,7 +29,7 @@ SSKR is described in [BCR-2020-011](https://github.com/BlockchainCommons/Researc
2929

3030
`sskr` is currently in a community review stage. We would appreciate your consideration and/or testing of the libraries. Obviously, let us know if you find any mistakes or problems. But also let us know if the API meets your needs, if the functionality is easy to use, if the usage of Rust feels properly standardized, and if the library solves any problems you are encountering when doing this kind of coding. Also let us know how it could be improved and what else you'd need for this to be just right for your usage. Comments can be posted [to the Gordian Developer Community](https://github.com/BlockchainCommons/Gordian-Developer-Community/discussions/116).
3131

32-
Because this library is still in a community review stage, it should not be used for production tasks until it has had further testing and auditing.
32+
Because this library is still in a community review stage, it should not be used for production tasks until it has had further testing and auditing.
3333

3434
See [Blockchain Commons' Development Phases](https://github.com/BlockchainCommons/Community/blob/master/release-path.md).
3535

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/sskr/0.2.0")]
1+
#![doc(html_root_url = "https://docs.rs/sskr/0.3.0")]
22
#![warn(rust_2018_idioms)]
33

44
//! # Introduction
@@ -9,7 +9,7 @@
99
//!
1010
//! ```toml
1111
//! [dependencies]
12-
//! sskr = "0.2.0"
12+
//! sskr = "0.3.0"
1313
//! ```
1414
//!
1515
//! # Example

0 commit comments

Comments
 (0)