File tree 3 files changed +19
-4
lines changed
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
6
6
7
7
## [ Unreleased]
8
8
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
10
10
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 )
13
16
14
17
## [ 0.10.5] ( https://github.com/openssh-rust/openssh/compare/v0.10.4...v0.10.5 ) - 2024-08-10
15
18
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " openssh"
3
- version = " 0.10.6 "
3
+ version = " 0.11.0 "
4
4
authors = [
" Jon Gjengset <[email protected] >" ]
5
5
edition = " 2021"
6
6
rust-version = " 1.63.0"
Original file line number Diff line number Diff line change @@ -5,6 +5,18 @@ use crate::*;
5
5
#[ doc( hidden) ]
6
6
pub mod unreleased { }
7
7
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
+
8
20
/// ## Changed
9
21
/// - Added new fn [`Session::control_persist`] to set the `ControlPersist` option of
10
22
/// the master ssh connection.
You can’t perform that action at this time.
0 commit comments