From 9352ea65957b4d1536653e854177b32ab320b21a Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 26 Oct 2022 14:43:41 +1100 Subject: [PATCH] Add changelog and bump version to 1.1.0 We have added to the public API since last release so the next version number should be a minor version number bump. Add an entry to the CHANGELOG and bump the version to the next minor release version number 1.1.0 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbe376a..15ff29f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ CHANGELOG ========= +# v1.1.0 + +- Add optional [zeroize](https://docs.rs/zeroize/latest/zeroize/) support +- Allow word count multiples of three (previously was six) +- Make word list public + # v1.0.1 - Add `Mnemonic::language` getter. diff --git a/Cargo.toml b/Cargo.toml index a322787..1dc8ec9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bip39" -version = "1.0.1" +version = "1.1.0" authors = ["Steven Roose "] license = "CC0-1.0" homepage = "https://github.com/rust-bitcoin/rust-bip39/"