rusty-diceware

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

commit 1781b779cfda3e902a58d3ddd7257a4f3eed5323
parent da7f88c822ee708eb546ce526a19d30f8474c95f
Author: Yuval Langer <yuvallangerontheroad@gmail.com>
Date:   Wed,  7 Sep 2022 22:11:02 +0300

Add diceware v0.3.8 changes.

Diffstat:
MCHANGELOG.md | 17+++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -1,7 +1,11 @@ +## v0.3.8 + +* Switch from a the old and very very weird Struct definition per wordlist to the braindead simple array of `&str`s. +* Add a command line option that takes a filepath to a newline delimited wordlist file so that you could use your own wordlist. + ## v0.3.7 -* Deduplicate code implementing the `Word` trait using macros. (Thanks - @vbrandl!) +* Deduplicate code implementing the `Word` trait using macros. (Thanks @vbrandl!) * Deduplicate tests code using macros. (Thanks @vbrandl, again!) * Deduplicate `build.rs` code using a function. How not exciting. @@ -15,11 +19,8 @@ ## v0.3.4 -* Deduplicate word printing code by using the trait `Word` and moving that code - into a a generic function which uses that trait. -* Move to 2021 edition of Rustlang. Add a commented out wordlist command line - option for a future version. +* Deduplicate word printing code by using the trait `Word` and moving that code into a a generic function which uses that trait. +* Move to 2021 edition of Rustlang. Add a commented out wordlist command line option for a future version. * Remove some commented out code. -* Use the `Self` keyword in `impl`s instead of the type's concrete - name. +* Use the `Self` keyword in `impl`s instead of the type's concrete name. * Add this CHANGELOG.