File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9- ## [ 0.10.6 ] ( https://github.com/openssh-rust/openssh/compare/v0.10.5...v0.10.6 ) - 2024-08-10
9+ ## [ 0.11.0 ] ( https://github.com/openssh-rust/openssh/compare/v0.10.5...v0.10.6 ) - 2024-08-10
1010
11- ### Other
12- - Remove dep tokio-pipe ([ #155 ] ( https://github.com/openssh-rust/openssh/pull/155 ) ) ([ #156 ] ( https://github.com/openssh-rust/openssh/pull/156 ) )
11+ - Remove dep tokio-pipe (#156 )
12+ - Remove deprecated functions (#156 )
13+ - Replace ` From<tokio::proces::Child*> `
14+ with ` TryFrom<tokio::proces::Child*> ` , since the converison is falliable (#156 )
15+ - Remove ` IntoRawFd ` for ` Child* ` since the conversion is falliable (#156 )
1316
1417## [ 0.10.5] ( https://github.com/openssh-rust/openssh/compare/v0.10.4...v0.10.5 ) - 2024-08-10
1518
Original file line number Diff line number Diff line change 11[package ]
22name = " openssh"
3- version = " 0.10.6 "
3+ version = " 0.11.0 "
44authors = [
" Jon Gjengset <[email protected] >" ]
55edition = " 2021"
66rust-version = " 1.63.0"
Original file line number Diff line number Diff line change @@ -5,6 +5,18 @@ use crate::*;
55#[ doc( hidden) ]
66pub mod unreleased { }
77
8+ /// # Changed
9+ /// - Remove dep tokio-pipe (#156)
10+ /// - Remove deprecated functions (#156)
11+ /// - Replace `From<tokio::proces::Child*>`
12+ /// with `TryFrom<tokio::proces::Child*>`, since the converison is falliable (#156)
13+ /// - Remove `IntoRawFd` for `Child*` since the conversion is falliable (#156)
14+ pub mod v0_11_0 { }
15+
16+ /// ## Changed
17+ /// - Add missing feature doc for `Session::new*`
18+ pub mod v0_10_5 { }
19+
820/// ## Changed
921/// - Added new fn [`Session::control_persist`] to set the `ControlPersist` option of
1022/// the master ssh connection.
You can’t perform that action at this time.
0 commit comments