Skip to content

Commit d3b15de

Browse files
committed
Align to dependencies
1 parent 8195ee6 commit d3b15de

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sskr"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
edition = "2024"
55
description = "Sharded Secret Key Reconstruction (SSKR) for Rust."
66
authors = ["Blockchain Commons"]
@@ -13,7 +13,7 @@ categories = ["cryptography"] # https://cra
1313

1414
[dependencies]
1515
bc-rand = "^0.4.0"
16-
bc-shamir = "^0.7.0"
16+
bc-shamir = "^0.8.0"
1717

1818
thiserror = "^1.0.48"
1919

README.md

Lines changed: 1 addition & 1 deletion
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.7.0"
17+
sskr = "0.8.0"
1818
```
1919

2020
## Specification

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.7.0")]
1+
#![doc(html_root_url = "https://docs.rs/sskr/0.8.0")]
22
#![warn(rust_2018_idioms)]
33

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

0 commit comments

Comments
 (0)