From 5e727c519d019338574947cbd68652ab13a977cc Mon Sep 17 00:00:00 2001 From: Jovi Hsu Date: Tue, 17 Oct 2023 09:16:29 +0000 Subject: [PATCH] Release 0.4.3 --- Cargo.toml | 2 +- changelog | 4 ++++ src/constant.rs | 2 +- src/lib.rs | 2 +- version | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 875f60c..4735f36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssh-rs" -version = "0.4.2" +version = "0.4.3" edition = "2021" authors = [ "Gao Xiang Kang <1148118271@qq.com>", diff --git a/changelog b/changelog index b1d55c9..86c97f3 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,7 @@ +v0.4.3 (2023-10-18) + 1. Bump ring to 0.17 + 2. Add ssh-dss support (behind feature deprecated-dss-sha1) + v0.4.2 (2023-10-13) 1. Bump trace version, see #75 for more details 2. Bugfix: Do not panic at non-ssh server connections, see #77 for more diff --git a/src/constant.rs b/src/constant.rs index 921e6d1..51098fc 100644 --- a/src/constant.rs +++ b/src/constant.rs @@ -1,5 +1,5 @@ /// The client version -pub(crate) const CLIENT_VERSION: &str = "SSH-2.0-SSH_RS-0.4.2"; +pub(crate) const CLIENT_VERSION: &str = "SSH-2.0-SSH_RS-0.4.3"; pub(crate) const SSH_MAGIC: &[u8] = b"SSH-"; /// The constant strings that used for ssh communication diff --git a/src/lib.rs b/src/lib.rs index 6a47fda..b7dcc40 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! Dependencies //! ```toml -//! ssh-rs = "0.4.2" +//! ssh-rs = "0.4.3" //! ``` //! //!Rust implementation of ssh2.0 client. diff --git a/version b/version index 2b7c5ae..17b2ccd 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.4.2 +0.4.3