From b33aae0aebfc4ee1b7aa6595559e2f3ef7ca5bc1 Mon Sep 17 00:00:00 2001 From: alindima Date: Wed, 18 Oct 2023 13:05:53 +0300 Subject: [PATCH] Release v0.4.0 Signed-off-by: alindima --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5aa4e22..a733bcdc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ -# Upcoming Release +# v0.4.0 +## Changed - Seccomp is now activated via the seccomp syscall, not prctl + +## Added - A new Error::Seccomp variant is added to indictate seccomp syscall failures - Add `apply_filter_all_threads` convenience function which uses the seccomp TSYNC feature to synchronize all threads in the process to the same filter diff --git a/Cargo.toml b/Cargo.toml index 267bc627..a1f4bfc6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "seccompiler" -version = "0.3.0" +version = "0.4.0" authors = ["Amazon Firecracker Team "] description = "Provides easy-to-use seccomp-bpf jailing." repository = "https://github.com/rust-vmm/seccompiler"