Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release openssh v0.10.1 #137

Merged
merged 1 commit into from
Oct 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openssh"
version = "0.10.0"
version = "0.10.1"
authors = ["Jon Gjengset <[email protected]>"]
edition = "2021"
rust-version = "1.63.0"
Expand Down
28 changes: 25 additions & 3 deletions src/changelog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
use crate::*;

/// TODO: RENAME THIS INTO THE NEXT VERSION BEFORE RELEASE
///
#[doc(hidden)]
pub mod unreleased {}

/// ## Added
/// - Add new fn `SessionBuilder::ssh_auth_sock`
/// - Add new fns [`Session::arc_command`], [`Session::arc_raw_command`],
/// [`Session::to_command`], and [`Session::to_raw_command`] to support
/// session-owning commands
Expand All @@ -21,7 +22,28 @@ use crate::*;
/// sessions.
/// ## Removed
#[doc(hidden)]
pub mod unreleased {}
pub mod v0_10_1 {}

/// ## Added
/// - [`Session::new_process_mux`]
/// - [`Session::new_native_mux`]
/// - [`SessionBuilder::get_user`]
/// - [`SessionBuilder::get_port`]
/// - [`SessionBuilder::resolve`]
/// - [`SessionBuilder::launch_master`]
/// - [`SessionBuilder::clean_history_control_directory`]
/// - [`OverSsh`] for converting [`std::process::Command`],
/// [`tokio::process::Command`] or other custom types to
/// [`Command`].
/// ## Changed
/// - [`Socket::TcpSocket`] now contains `host: Cow<'_, str>` and `port: u16`
/// instead of an already resolved `SocketAddr`.
/// Since the socket could be opened on remote host, which might has
/// different dns configuration, it's better to delay resolution and perform
/// it on remote instead.
/// - [`Socket::new`] now takes `host: Cow<'_, str>` and `port: u16` for the
/// same reason as above.
pub mod v0_10_0 {}

/// ## Added
/// - Add new fn `SessionBuilder::ssh_auth_sock`
Expand Down
Loading