rusty-diceware

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit e7a5f63a2da5414958e8d0cc03dee483e22639b7
parent 98059bb4c81372a7ca1477921d67d44e52b8f45c
Author: Yuval Langer <yuvallangerontheroad@gmail.com>
Date:   Mon,  5 Sep 2022 19:45:26 +0300

Use the `Word` trait. Bump diceware version number. Add to CHANGELOG.

Diffstat:
MCHANGELOG.md | 6+++++-
MCargo.toml | 2+-
Mtests/tests.rs | 1+
3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -1,6 +1,10 @@ +## v0.3.6 + +* No, really, fix tests. (Added the `Word` trait) + ## v0.3.5 -* Fix tests. +* Fix tests. (Was broken due to a changed ThreadRng output) ## v0.3.4 diff --git a/Cargo.toml b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diceware" -version = "0.3.5" +version = "0.3.6" authors = ["Yuval Langer <yuvallangerontheroad@gmail.com>"] license = "AGPL-3.0" repository = "https://gitlab.com/yuvallanger/rusty-diceware" diff --git a/tests/tests.rs b/tests/tests.rs @@ -6,6 +6,7 @@ use rand::SeedableRng; use diceware::BealeWord; use diceware::ReinholdWord; +use diceware::Word; fn make_beale_vector() -> Vec<BealeWord> { let seed: [u8; 32] = [0; 32];