Skip to content

Commit

Permalink
0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Aug 28, 2023
1 parent fb74f10 commit 9bc424a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ name = "insta-cmd"
readme = "README.md"
repository = "https://github.com/mitsuhiko/insta-cmd"
rust-version = "1.57.0"
version = "0.3.0"
version = "0.4.0"

[dependencies]
insta = {version = "1.29.0", features = ["serde"]}
serde = {version = "1.0.139", features = ["derive"]}
insta = { version = "1.29.0", features = ["serde"] }
serde = { version = "1.0.139", features = ["derive"] }
serde_json = "1.0.82"
2 changes: 1 addition & 1 deletion src/spawn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ impl Info {
)
})
.collect(),
stdin: stdin.as_ref().map(|x| String::from_utf8_lossy(&x).into()),
stdin: stdin.as_ref().map(|x| String::from_utf8_lossy(x).into()),
}
}
}
Expand Down

0 comments on commit 9bc424a

Please sign in to comment.