From e4d11ec247f473f0069508a5c2e10709ec535eb4 Mon Sep 17 00:00:00 2001 From: Levi Zim Date: Mon, 7 Oct 2024 11:19:41 +0800 Subject: [PATCH] chore: release v0.6.2-rc.1 --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcab7385..ab105240 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v0.6.2-rc.1 + +- Fix: Update dependencies to get rid of yanked futures-util 0.3.30 +- Fix: Ensure build-script is built with the same vendoring feature as the main binary +- eBPF: Use a better workaround in eBPF code(empty printk workaround is removed). +- CI: Fix a typo in CI yaml that caused the released static binaries to be non static. +- CI: Enable eBPF for riscv64. +- CI: Enable static builds for riscv64. + ## v0.6.1 - Docs: document dependencies for building in INSTALL.md. diff --git a/Cargo.lock b/Cargo.lock index bdaaf62c..de379f17 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2001,7 +2001,7 @@ dependencies = [ [[package]] name = "tracexec" -version = "0.6.1" +version = "0.6.2-rc.1" dependencies = [ "arboard", "arcstr", diff --git a/Cargo.toml b/Cargo.toml index 8801beee..21202bcf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracexec" -version = "0.6.1" +version = "0.6.2-rc.1" edition = "2021" authors = ["Levi Zim "] description = "Tracer for execve{,at} and pre-exec behavior, launcher for debuggers."