diff --git a/CHANGELOG.md b/CHANGELOG.md index a67f7d9..5696fec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## `0.1.1` - June 9th, 2024 + +### Fixed + +- Fixed nested processes (processes spawned by processes spawned by rokit) hanging on macOS + ## `0.1.0` - June 9th, 2024 ### Added diff --git a/Cargo.lock b/Cargo.lock index 19f3a1e..1090a78 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1776,7 +1776,7 @@ dependencies = [ [[package]] name = "rokit" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "async-once-cell", diff --git a/Cargo.toml b/Cargo.toml index ed63f13..9ee5eac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rokit" -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "MIT" repository = "https://github.com/filiptibell/rokit" diff --git a/lib/system/runner.rs b/lib/system/runner.rs index 9741f5b..7c96991 100644 --- a/lib/system/runner.rs +++ b/lib/system/runner.rs @@ -80,11 +80,6 @@ where let mut wrapper = TokioCommandWrap::from(command); wrapper.wrap(KillOnDrop); - #[cfg(unix)] - { - wrapper.wrap(ProcessGroup::leader()); - } - #[cfg(windows)] { wrapper.wrap(JobObject);