Skip to content

Commit

Permalink
Release 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
HsuJv committed Oct 17, 2023
1 parent 8bee98a commit 5e727c5
Show file tree
Hide file tree
Showing 5 changed files with 8 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.2"
version = "0.4.3"
edition = "2021"
authors = [
"Gao Xiang Kang <[email protected]>",
Expand Down
4 changes: 4 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -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
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.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
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.2"
//! ssh-rs = "0.4.3"
//! ```
//!
//!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.2
0.4.3

0 comments on commit 5e727c5

Please sign in to comment.