Skip to content

Commit

Permalink
Release 0.11.0 (#158)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
NobodyXu authored Aug 10, 2024
1 parent c379c5b commit da6fc29
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.6](https://github.com/openssh-rust/openssh/compare/v0.10.5...v0.10.6) - 2024-08-10
## [0.11.0](https://github.com/openssh-rust/openssh/compare/v0.10.5...v0.10.6) - 2024-08-10

### Other
- Remove dep tokio-pipe ([#155](https://github.com/openssh-rust/openssh/pull/155)) ([#156](https://github.com/openssh-rust/openssh/pull/156))
- Remove dep tokio-pipe (#156)
- Remove deprecated functions (#156)
- Replace `From<tokio::proces::Child*>`
with `TryFrom<tokio::proces::Child*>`, since the converison is falliable (#156)
- Remove `IntoRawFd` for `Child*` since the conversion is falliable (#156)

## [0.10.5](https://github.com/openssh-rust/openssh/compare/v0.10.4...v0.10.5) - 2024-08-10

Expand Down
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.6"
version = "0.11.0"
authors = ["Jon Gjengset <[email protected]>"]
edition = "2021"
rust-version = "1.63.0"
Expand Down
12 changes: 12 additions & 0 deletions src/changelog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ use crate::*;
#[doc(hidden)]
pub mod unreleased {}

/// # Changed
/// - Remove dep tokio-pipe (#156)
/// - Remove deprecated functions (#156)
/// - Replace `From<tokio::proces::Child*>`
/// with `TryFrom<tokio::proces::Child*>`, since the converison is falliable (#156)
/// - Remove `IntoRawFd` for `Child*` since the conversion is falliable (#156)
pub mod v0_11_0 {}

/// ## Changed
/// - Add missing feature doc for `Session::new*`
pub mod v0_10_5 {}

/// ## Changed
/// - Added new fn [`Session::control_persist`] to set the `ControlPersist` option of
/// the master ssh connection.
Expand Down

0 comments on commit da6fc29

Please sign in to comment.