From a0212d073166483c9bd7a7e4a210fd9f3e18e6c4 Mon Sep 17 00:00:00 2001 From: Leo Date: Sat, 11 Jul 2020 22:07:43 +0800 Subject: [PATCH] Bump version to 0.4 --- Cargo.toml | 2 +- Changelog.md | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9d078d7..9ee62f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "osshkeys" description = "A library to read and write OpenSSH public and private keys" -version = "0.3.1" +version = "0.4.0" authors = ["Leo "] keywords = ["ssh", "ssh-keys", "keys", "openssh"] repository = "https://github.com/Leo1003/rust-osshkeys" diff --git a/Changelog.md b/Changelog.md index e1a6f74..fd9c8bd 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,12 +1,14 @@ # Changelog +## Unreleased + --- -## Unreleased +## 0.4.0 (2020/07/11) - **Breaking Change!!** - Remove `SshReadExt::read_list()`, `SshWriteExt::write_list()` - Rename `PublicKey::from_keystring()` to `PublicKey::from_keystr()` - - Remove usage of failure crate + - Remove the usage of failure crate - Change to use the `bcrypt-pbkdf` crate, the passphrase type is `&str` now! - **Add** - `SshBuf` which uses `CryptoVec` to provide memory zeroizing guarantee when resizing