Skip to content

Commit

Permalink
Release version 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
HsuJv committed Nov 15, 2023
1 parent ac9098a commit de4e586
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssh-rs"
version = "0.4.3"
version = "0.4.4"
edition = "2021"
authors = [
"Gao Xiang Kang <[email protected]>",
Expand Down
5 changes: 5 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/constant.rs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Dependencies
//! ```toml
//! ssh-rs = "0.4.3"
//! ssh-rs = "0.4.4"
//! ```
//!
//!Rust implementation of ssh2.0 client.
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.3
0.4.4

0 comments on commit de4e586

Please sign in to comment.