mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-22 00:00:11 +02:00
process: Update CHANGELOG
This commit is contained in:
+10
-29
@@ -1,11 +1,4 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
## [0.2.4] - 2019-06-21
|
||||
## 0.2.4 - 2019-06-21
|
||||
### Fixed
|
||||
* Proccesses "leaked" via `Child::forget` now reaped rather than left as zombies
|
||||
for the duration of the parent process.
|
||||
@@ -16,17 +9,17 @@ exits. This avoids a pathological deadlock if the kernel doesn't kill the child.
|
||||
* Updated the example program for reading lines from a child process to be more
|
||||
flexible to be copy/pasted and iterated upon.
|
||||
|
||||
## [0.2.3] - 2018-11-01
|
||||
## 0.2.3 - 2018-11-01
|
||||
### Added
|
||||
* `ChildStd{in, out, err}` now implement `AsRawFd`/`AsRawHandle` on Unix/Windows
|
||||
systems, respectively.
|
||||
|
||||
## [0.2.2] - 2018-05-27
|
||||
## 0.2.2 - 2018-05-27
|
||||
### Fixed
|
||||
- Fixed a pathological situation where a signal could be missed if it arrived
|
||||
after polling the child but before registering for a new notification
|
||||
|
||||
## [0.2.1] - 2018-05-18
|
||||
## 0.2.1 - 2018-05-18
|
||||
### Changed
|
||||
- **Breaking**: asynchronous spawning of a child process now requires using a
|
||||
reactor handle from the `tokio` crate instead of the `tokio-core` crate
|
||||
@@ -35,17 +28,17 @@ reactor handle from the `tokio` crate instead of the `tokio-core` crate
|
||||
### Removed
|
||||
- **Breaking**: removed all previously deprecated items
|
||||
|
||||
## [0.1.6] - 2018-05-09
|
||||
## 0.1.6 - 2018-05-09
|
||||
### Fixed
|
||||
- On Unix systems, any child processes that are `kill`ed (or implicitly killed
|
||||
via dropping the child without calling `forget`) are no longer left in a zombie
|
||||
state, which allows the OS to reclaim the process.
|
||||
|
||||
## [0.1.5] - 2018-01-03
|
||||
## 0.1.5 - 2018-01-03
|
||||
### Changed
|
||||
- Minimum required version of `winapi` has been bumped to `0.3`.
|
||||
|
||||
## [0.1.4] - 2017-06-25
|
||||
## 0.1.4 - 2017-06-25
|
||||
### Fixed
|
||||
- Added missing `Debug` impls on all types.
|
||||
- Added missing `must_use` annotations on all futures.
|
||||
@@ -53,20 +46,20 @@ state, which allows the OS to reclaim the process.
|
||||
to prevent potential deadlocks when attempting to interact with any pipes held
|
||||
by the parent process.
|
||||
|
||||
## [0.1.3] - 2017-03-15
|
||||
## 0.1.3 - 2017-03-15
|
||||
### Changed
|
||||
- Minimum required version of `futures` has been bumped to `0.1.11`.
|
||||
- Minimum required version of `mio` has been bumped to `0.6.5`.
|
||||
- Minimum required version of `tokio-core` has been bumped to `0.1.6`.
|
||||
|
||||
## [0.1.2] - 2017-01-24
|
||||
## 0.1.2 - 2017-01-24
|
||||
### Changed
|
||||
- Minimum required version of `tokio-signal` has been bumped to `0.1.2`.
|
||||
### Fixed
|
||||
- The event loop which spawns the first async child no longer needs to be kept
|
||||
alive for subsequent child spawns to make progress.
|
||||
|
||||
## [0.1.1] - 2016-12-19
|
||||
## 0.1.1 - 2016-12-19
|
||||
### Added
|
||||
- Support performing async I/O operations on the child's stdio handles.
|
||||
### Changed
|
||||
@@ -76,15 +69,3 @@ the locally vendored `Command` type.
|
||||
|
||||
## 0.1.0 - 2016-09-10
|
||||
- First release!
|
||||
|
||||
[Unreleased]: https://github.com/alexcrichton/tokio-process/compare/0.2.4...HEAD
|
||||
[0.2.4]: https://github.com/alexcrichton/tokio-process/compare/0.2.3...0.2.4
|
||||
[0.2.3]: https://github.com/alexcrichton/tokio-process/compare/0.2.2...0.2.3
|
||||
[0.2.2]: https://github.com/alexcrichton/tokio-process/compare/0.2.1...0.2.2
|
||||
[0.2.1]: https://github.com/alexcrichton/tokio-process/compare/0.1.6...0.2.1
|
||||
[0.1.6]: https://github.com/alexcrichton/tokio-process/compare/0.1.5...0.1.6
|
||||
[0.1.5]: https://github.com/alexcrichton/tokio-process/compare/0.1.4...0.1.5
|
||||
[0.1.4]: https://github.com/alexcrichton/tokio-process/compare/0.1.3...0.1.4
|
||||
[0.1.3]: https://github.com/alexcrichton/tokio-process/compare/0.1.2...0.1.3
|
||||
[0.1.2]: https://github.com/alexcrichton/tokio-process/compare/0.1.1...0.1.2
|
||||
[0.1.1]: https://github.com/alexcrichton/tokio-process/compare/0.1.0...0.1.1
|
||||
|
||||
Reference in New Issue
Block a user