rusty-diceware

Commandline diceware, with or without dice, written in Rustlang.
git clone https://kaka.farm/~git/rusty-diceware
Log | Files | Refs | README | LICENSE

commit 1bf9738cd86e923892c8cf4e0495d3c630deac01
parent af8c215eda3b61f7aa5486df6891fb9e9c128efa
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Thu,  7 Nov 2024 23:31:51 +0200

Bump versions and add CHANGELOG entries.

Diffstat:
MCHANGELOG.md | 7+++++++
MCargo.toml | 2+-
Mdiceware_wordlists/CHANGELOG.md | 5+++++
Mdiceware_wordlists/Cargo.toml | 2+-
4 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -1,3 +1,10 @@ +# v0.5.9 + +* Fix a bug in the manual die casting method (-r, --dicerolls). +* Define and use two Iterator types for both the RNG and manual die casting methods. +* Add unit tests for the manual die casting method. +* Update README.md file. + # v0.5.8 * Move tests into tests directory. diff --git a/Cargo.toml b/Cargo.toml @@ -4,7 +4,7 @@ members = ["diceware_wordlists"] [package] name = "diceware" -version = "0.5.8" +version = "0.5.9" authors = ["Yuval Langer <yuvallangerontheroad@gmail.com>"] license = "AGPL-3.0" repository = "https://gitlab.com/yuvallanger/rusty-diceware" diff --git a/diceware_wordlists/CHANGELOG.md b/diceware_wordlists/CHANGELOG.md @@ -1,3 +1,8 @@ +## v1.2.2 + +* Minor Clippy type code improvements (`map(...).collect()` to `fold(...)`). +* Add README.md file. + ## v1.2.1 Derive Clone on Worldlist enum. (Thanks @jcgruenhage!) diff --git a/diceware_wordlists/Cargo.toml b/diceware_wordlists/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diceware_wordlists" -version = "1.2.1" +version = "1.2.2" authors = ["Yuval Langer <yuvallangerontheroad@gmail.com>"] license = "MIT OR Apache-2.0" repository = "https://gitlab.com/yuvallanger/rusty-diceware"