rusty-diceware

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

commit f89aeae2b26aa16aae6f55f5391648ae25855b33
parent 94b1d5d56e7d12b18a1fc79ab0a1cd3935f6f649
Author: Yuval Langer <yuvallangerontheroad@gmail.com>
Date:   Wed, 19 Oct 2022 15:37:08 +0300

Bump a fairly stable looking `diceware_wordlists`, and shuffle some CHANGELOGS.

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

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -2,10 +2,6 @@ * Move wordlists to their own permissively licensed `diceware_wordlists` crate. -### In the `diceware_wordlists` crate: - -* Jan Christian Grünhage (@jcgruenhage) surrounded the wordlists in enums and added optional serde feature. Thank you! - ## v0.5.3 * Check for legal die digit (not less than 1 not more than 6). diff --git a/Cargo.lock b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "diceware" -version = "0.5.6" +version = "0.5.7" dependencies = [ "diceware_wordlists", "getopts", @@ -19,7 +19,7 @@ dependencies = [ [[package]] name = "diceware_wordlists" -version = "0.5.6" +version = "1.0.0" dependencies = [ "serde", ] diff --git a/Cargo.toml b/Cargo.toml @@ -4,7 +4,7 @@ members = ["diceware_wordlists"] [package] name = "diceware" -version = "0.5.6" +version = "0.5.7" authors = ["Yuval Langer <yuvallangerontheroad@gmail.com>"] license = "AGPL-3.0" repository = "https://gitlab.com/yuvallanger/rusty-diceware" @@ -17,4 +17,4 @@ edition = "2021" [dependencies] getopts = "^0.2" rand = "^0.8" -diceware_wordlists = { path = "diceware_wordlists", version = "^0.5" } +diceware_wordlists = { path = "diceware_wordlists", version = "^1" } diff --git a/diceware_wordlists/CHANGELOG.md b/diceware_wordlists/CHANGELOG.md @@ -0,0 +1,7 @@ +## v1.0.0 + +No change, just bumping due to a fairly stable looking API. + +## v0.5.6 + +Jan Christian Grünhage (@jcgruenhage) surrounded the wordlists in enums and added optional serde feature. Thank you! diff --git a/diceware_wordlists/Cargo.toml b/diceware_wordlists/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diceware_wordlists" -version = "0.5.6" +version = "1.0.0" authors = ["Yuval Langer <yuvallangerontheroad@gmail.com>"] license = "MIT OR Apache-2.0" repository = "https://gitlab.com/yuvallanger/rusty-diceware"