Skip to content

Commit 7739469

Browse files
committed
Prep for release
1 parent 0f65623 commit 7739469

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sskr"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
edition = "2024"
55
description = "Sharded Secret Key Reconstruction (SSKR) for Rust."
66
authors = ["Blockchain Commons"]

README.md

Lines changed: 5 additions & 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.9.0"
17+
sskr = "0.9.1"
1818
```
1919

2020
## Specification
@@ -41,6 +41,10 @@ To financially support further development of `sskr` and other projects, please
4141

4242
## Version History
4343

44+
### 0.9.1 - October 20, 2025
45+
46+
- Align to dependencies.
47+
4448
### 0.9.0 - September 16, 2025
4549

4650
- Migrate to thiserror v2

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

44
//! # Introduction
@@ -14,7 +14,7 @@
1414
//!
1515
//! ```toml
1616
//! [dependencies]
17-
//! sskr = "0.9.0"
17+
//! sskr = "0.9.1"
1818
//! ```
1919
//!
2020
//! # Example

0 commit comments

Comments
 (0)