Skip to content

Commit

Permalink
Version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptibell committed Jun 9, 2024
1 parent fdaf039 commit a277cf2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
5 changes: 0 additions & 5 deletions lib/system/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a277cf2

Please sign in to comment.