diff --git a/Cargo.toml b/Cargo.toml index 4735f36..80d8906 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssh-rs" -version = "0.4.3" +version = "0.4.4" edition = "2021" authors = [ "Gao Xiang Kang <1148118271@qq.com>", diff --git a/changelog b/changelog index 86c97f3..a7ab4c9 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,8 @@ +v0.4.4 (2023-11-15) + 1. Remove some debug print + 2. Fix the panic when connect to non-ssh servers + 3. Start the ssh-version negotiations as soon as the connection established + v0.4.3 (2023-10-18) 1. Bump ring to 0.17 2. Add ssh-dss support (behind feature deprecated-dss-sha1) diff --git a/src/constant.rs b/src/constant.rs index 51098fc..e5d32ea 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.3"; +pub(crate) const CLIENT_VERSION: &str = "SSH-2.0-SSH_RS-0.4.4"; 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 b7dcc40..0f4718b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! Dependencies //! ```toml -//! ssh-rs = "0.4.3" +//! ssh-rs = "0.4.4" //! ``` //! //!Rust implementation of ssh2.0 client. diff --git a/version b/version index 17b2ccd..6f2743d 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.4.3 +0.4.4