From 646dce4cd066812f69c17952044de8551ba78ed9 Mon Sep 17 00:00:00 2001 From: Leo Chen Date: Sat, 3 Jun 2023 15:25:47 +0800 Subject: [PATCH] Release 0.7.0 --- Cargo.toml | 2 +- Changelog.md | 17 ++++++++++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 11db0bf..dcc2e1f 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.6.2" +version = "0.7.0" authors = ["Leo "] edition = "2021" rust-version = "1.63.0" diff --git a/Changelog.md b/Changelog.md index 64d92f7..fd658f3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,21 @@ --- +## 0.7.0 (2023/06/03) +- **Compiler** + - Minimum rustc version is now 1.63.0 +- **Improvment** + - Replace deprecated GitHub actions + - Change default rsa digest to rsa-sha2-512 +- **Dependencies** + - Upgrade hex-literal to 0.4.1 + - Upgrade bcrypt-pbkdf to 0.10.0 + - Upgrade base64 to 0.21.0 + - Replace nom_pem with pem + - Thanks for fenollp implementing this feature in #10 + +--- + ## 0.6.2 (2022/08/22) - **Improvment** - Now support OpenSSL Ed25519 key format @@ -28,7 +43,7 @@ - Migrate to Rust 2021 edition - **Dependencies** - Upgrade digest to 0.10.2 with its related crates - - Upgrade digest to 0.4.0 with its related crates + - Upgrade cipher to 0.4.0 with its related crates ---