Skip to content

Commit

Permalink
Merge pull request #79 from HsuJv/main
Browse files Browse the repository at this point in the history
release 0.4.2
  • Loading branch information
HsuJv authored Oct 13, 2023
2 parents 8eeec25 + a58e949 commit 040bcf9
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.1"
version = "0.4.2"
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.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, [email protected] support

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.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
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.1"
//! ssh-rs = "0.4.2"
//! ```
//!
//!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.1
0.4.2

0 comments on commit 040bcf9

Please sign in to comment.