Skip to content

Commit da6fc29

Browse files
authored
Release 0.11.0 (#158)
* Release openssh 0.11.0 Signed-off-by: Jiahao XU <[email protected]> * Update CHANGELOG.md Signed-off-by: Jiahao XU <[email protected]> * Update changelog.rs Signed-off-by: Jiahao XU <[email protected]> * Fix typo in CHANGELOG.md Signed-off-by: Jiahao XU <[email protected]> * Fix fmt in src/changelog.rs Signed-off-by: Jiahao XU <[email protected]> --------- Signed-off-by: Jiahao XU <[email protected]>
1 parent c379c5b commit da6fc29

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

Diff for: CHANGELOG.md

+6-3
Original file line numberDiff line numberDiff 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

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssh"
3-
version = "0.10.6"
3+
version = "0.11.0"
44
authors = ["Jon Gjengset <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.63.0"

Diff for: src/changelog.rs

+12
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ use crate::*;
55
#[doc(hidden)]
66
pub 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.

0 commit comments

Comments
 (0)