Skip to content

Commit 325b7ef

Browse files
authored
Merge pull request #62 from NobodyXu/prepare-for-v0_9_0_release
PR for bumping dependencies
2 parents 65197e0 + 7104aa1 commit 325b7ef

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ tokio = { version = "1", features = [ "process", "io-util", "macros" ] }
4242
tokio-pipe = "0.2.8"
4343

4444
libc = "0.2.112"
45-
io-lifetimes = "0.5"
45+
io-lifetimes = "0.6"
4646

4747
once_cell = "1.8.0"
4848
dirs = "4.0.0"
4949

50-
openssh-mux-client = { version = "0.14.4", optional = true }
50+
openssh-mux-client = { version = "0.15.0", optional = true }
5151

5252
[dev-dependencies]
5353
lazy_static = "1.4.0"

src/changelog.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ use crate::*;
1616
/// implementation for [`ChildStderr`].
1717
/// - Remove accidentally exposed `TryFrom<tokio_pipe::PipeRead>`
1818
/// implementation for [`ChildStderr`].
19-
#[doc(hidden)]
19+
///
2020
/// ## Changed
2121
/// - Make [`Session::check`] available only on unix.
2222
/// - Make [`Socket::UnixSocket`] available only on unix.
2323
/// - Make [`SessionBuilder::control_directory`] available only on unix.
24+
#[doc(hidden)]
2425
pub mod unreleased {}
2526

2627
/// ## Fixed

src/command.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,6 @@ pub struct Command<'s> {
9292

9393
impl<'s> Command<'s> {
9494
pub(crate) fn new(session: &'s super::Session, imp: CommandImp) -> Self {
95-
// All implementations of Command initializes stdin, stdout and stderr
96-
// to Stdio::inherit()
9795
Self {
9896
session,
9997
imp,

0 commit comments

Comments
 (0)