diff --git a/Cargo.toml b/Cargo.toml index b0b7196..f8e6903 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssh-rs" -version = "0.4.1" +version = "0.4.2" edition = "2021" authors = [ "Gao Xiang Kang <1148118271@qq.com>", diff --git a/changelog b/changelog index 2363533..b1d55c9 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,8 @@ +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 + details + v0.4.1 (2023-09-20) 1. Add zlib, zlib@openssh.com support diff --git a/src/constant.rs b/src/constant.rs index 6996784..921e6d1 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.1"; +pub(crate) const CLIENT_VERSION: &str = "SSH-2.0-SSH_RS-0.4.2"; 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 4f7adde..6a47fda 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! Dependencies //! ```toml -//! ssh-rs = "0.4.1" +//! ssh-rs = "0.4.2" //! ``` //! //!Rust implementation of ssh2.0 client. diff --git a/version b/version index 44bb5d1..2b7c5ae 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.4.1 \ No newline at end of file +0.4.2