Skip to content

Commit

Permalink
chore: release v1.1.1 (#39)
Browse files Browse the repository at this point in the history
* chore: release v1.1.1

* refactor: remove pub from internal method
  • Loading branch information
nathanbabcock authored Aug 30, 2024
1 parent e13eb3a commit 554a21d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ffmpeg-sidecar"
version = "1.1.0"
version = "1.1.1"
edition = "2021"
description = "Wrap a standalone FFmpeg binary in an intuitive Iterator interface."
authors = ["Nathan Babcock <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ impl FfmpegCommand {
/// The interactive "Would you like to overwrite?" prompt is problematic,
/// since it won't be parsed by the log parser and the process will appear
/// to hang indefinitely without any indication of what's happening.
pub fn prevent_overwrite_prompt(&mut self) -> &mut Self {
fn prevent_overwrite_prompt(&mut self) -> &mut Self {
let is_overwrite_arg = |arg| arg == "-y" || arg == "-n" || arg == "-nostdin";
if !self.get_args().any(is_overwrite_arg) {
self.no_overwrite();
Expand Down

0 comments on commit 554a21d

Please sign in to comment.