diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f3456f..e585c29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v0.0.5-rc.1 + +Changes since v0.0.4: + +- Seccomp-bpf optimization is implemented and enabled by default. This almost reduces the performance overhead of tracexec to zero. + - `--seccomp-bpf` option is added to control this feature. + - Added a warning when running on untested low kernel versions (<4.8). +- Bug fixes for `--no-show-env`. +- List is now highlighted when using `--more-colors`. + ## v0.0.4 tracexec v0.0.4 released! diff --git a/Cargo.lock b/Cargo.lock index 67b56ce..e078bf8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -556,7 +556,7 @@ dependencies = [ [[package]] name = "tracexec" -version = "0.0.4" +version = "0.0.5-rc.1" dependencies = [ "atoi", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index 8ed377b..a668e34 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracexec" -version = "0.0.4" +version = "0.0.5-rc.1" edition = "2021" authors = ["Levi Zim "] description = "A small utility for tracing execve{,at}"