From 206f09af3e0d11b7ff8310bd1cb3fcf566f4b0cc Mon Sep 17 00:00:00 2001 From: kxxt Date: Fri, 27 Oct 2023 16:50:19 +0800 Subject: [PATCH] release: v0.0.1 --- CHANGELOG.md | 13 +++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48192f1..68e93dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## v0.0.1 + +tracexec v0.0.1 released! + +Changes since v0.0.0-experimental.7: + +- feat: --output, stderr by default +- feat: set foreground process group +- feat: use exit code from root child +- cli: allow show-filename to be used with show-cmdline +- cli: rename some options +- docs: update README + ## v0.0.0-experimental.7 - Fix github release workflow diff --git a/Cargo.lock b/Cargo.lock index 68f6172..f9fd519 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -518,7 +518,7 @@ dependencies = [ [[package]] name = "tracexec" -version = "0.0.0-experimental.7" +version = "0.0.1" dependencies = [ "cfg-if", "clap", diff --git a/Cargo.toml b/Cargo.toml index c69dba8..10d799e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracexec" -version = "0.0.0-experimental.7" +version = "0.0.1" edition = "2021" authors = ["Levi Zim "] description = "A small utility to trace program execution."