From b861a8f5ba5e80483341d3c4b33a07414ad73ec7 Mon Sep 17 00:00:00 2001 From: Levi Zim Date: Fri, 10 Jan 2025 19:31:51 +0800 Subject: [PATCH] chore: release v0.8.2 --- CHANGELOG.md | 3 ++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cd0e78..67a23fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v0.8.1 +## v0.8.2 ### Notice @@ -26,6 +26,7 @@ where the patch that causes the regression is reverted. Further investigation is - Internal refactor: remove lazy_static - Internal refactor: replace some static variables with constants (by @Integral-Tech) - tracexec now uses `PTRACE_SEIZE` instead of setting `PTRACE_TRACEME` after fork. +- Specify MSRV in `Cargo.toml`. (v0.8.1 is yanked because the incompatible lockfile version change from 3 to 4). ## v0.8.0 diff --git a/Cargo.lock b/Cargo.lock index 3fd3d01..26823bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2032,7 +2032,7 @@ dependencies = [ [[package]] name = "tracexec" -version = "0.8.1" +version = "0.8.2" dependencies = [ "arboard", "arcstr", diff --git a/Cargo.toml b/Cargo.toml index e612d19..f6ffc6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracexec" -version = "0.8.1" +version = "0.8.2" edition = "2021" authors = ["Levi Zim "] description = "Tracer for execve{,at} and pre-exec behavior, launcher for debuggers."