Skip to content

Commit

Permalink
feat: Bump version to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
John Doe committed Feb 20, 2024
1 parent 49449a8 commit 52bea82
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion hakoniwa-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hakoniwa-cli"
version = "0.5.0"
version = "0.5.1"
description = "Process isolation for Linux using namespaces, resource limits and seccomp."
keywords = ["security", "sandbox", "sandboxing", "process-isolation", "linux-namespaces"]
homepage = "https://github.com/souk4711/hakoniwa"
Expand Down
2 changes: 1 addition & 1 deletion hakoniwa-cli/src/cli/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ impl RunCommand {
let mut hooks: HashMap<&str, &dyn Fn(&Executor)> = HashMap::new();
hooks.insert("after_fork", &|e: &Executor| {
let pid = e.pid.unwrap();
let mut signals = Signals::new(&[SIGINT]).unwrap();
let mut signals = Signals::new([SIGINT]).unwrap();
thread::spawn(move || {
for _ in signals.forever() {
_ = signal::kill(pid, Signal::SIGKILL);
Expand Down
2 changes: 1 addition & 1 deletion hakoniwa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hakoniwa"
version = "0.5.0"
version = "0.5.1"
description = "Process isolation for Linux using namespaces, resource limits and seccomp."
keywords = ["security", "sandbox", "sandboxing", "process-isolation", "linux-namespaces"]
homepage = "https://github.com/souk4711/hakoniwa"
Expand Down

0 comments on commit 52bea82

Please sign in to comment.