From c151aee8b16e235d1532ce58ff840b02ad5a4a9e Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 19 Aug 2024 12:47:34 +0200 Subject: [PATCH] 0.4.0 --- Cargo.lock | 4 ++-- teetty/Cargo.toml | 4 ++-- tty-spawn/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b05c619..7a46356 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -186,7 +186,7 @@ checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" [[package]] name = "teetty" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "clap", @@ -220,7 +220,7 @@ dependencies = [ [[package]] name = "tty-spawn" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "nix", diff --git a/teetty/Cargo.toml b/teetty/Cargo.toml index 581be85..92364d1 100644 --- a/teetty/Cargo.toml +++ b/teetty/Cargo.toml @@ -4,7 +4,7 @@ license = "Apache-2.0" authors = ["Armin Ronacher "] description = " A bit like tee, a bit like script, but all with a fake tty. Lets you remote control and watch a process." repository = "https://github.com/mitsuhiko/teetty" -version = "0.3.1" +version = "0.4.0" rust-version = "1.63.0" edition = "2021" keywords = ["pty", "script", "tty", "tee"] @@ -15,7 +15,7 @@ exclude = [ [dependencies] anyhow = "1.0.68" -tty-spawn = { version = "=0.3.1", path = "../tty-spawn" } +tty-spawn = { version = "=0.4.0", path = "../tty-spawn" } clap = { version = "4.5.0", default-features = false, features = ["std", "help", "wrap_help", "error-context"] } [dev-dependencies] diff --git a/tty-spawn/Cargo.toml b/tty-spawn/Cargo.toml index bf94ce2..d308148 100644 --- a/tty-spawn/Cargo.toml +++ b/tty-spawn/Cargo.toml @@ -4,7 +4,7 @@ license = "Apache-2.0" authors = ["Armin Ronacher "] description = "The internal tty spawning functionality of the teetty utility" repository = "https://github.com/mitsuhiko/teetty" -version = "0.3.1" +version = "0.4.0" edition = "2021" rust-version = "1.63.0" keywords = ["pty", "script", "tty", "tee"]