2019-04-01 12:46:23 -07:00
|
|
|
# 0.2.9
|
|
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
- `windows::Event` performs internal registrations lazily, so now it can be
|
|
|
|
|
constructed outside of a running task
|
|
|
|
|
- remove usage of deprecated `Handle::current` in default `windows::Event`
|
|
|
|
|
constructors
|
|
|
|
|
|
2019-03-22 13:55:48 -07:00
|
|
|
# 0.2.8 (March 22, 2019)
|
|
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
- remove usage of deprecated `Handle::current` (#981).
|
|
|
|
|
|
2018-11-21 17:11:31 -08:00
|
|
|
## 0.2.7 - (November 21, 2018)
|
2018-11-16 22:56:43 +00:00
|
|
|
### Changed
|
|
|
|
|
* `unix::Signal` now implements `Sync`
|
2018-11-21 17:11:31 -08:00
|
|
|
* minimize allocations
|
2018-11-16 22:56:43 +00:00
|
|
|
|
|
|
|
|
### Fixes
|
|
|
|
|
* `unix::Signal` now avoids extraneous wakeups generated as a result of
|
|
|
|
|
dropping other instances
|
2018-05-06 21:50:41 +02:00
|
|
|
|
2018-10-24 03:39:19 +00:00
|
|
|
## 0.2.6 - (October 26, 2018)
|
|
|
|
|
### Changed
|
|
|
|
|
* Use the `signal-hook` crate for managing signal registrations
|
2018-08-12 17:17:25 -07:00
|
|
|
|
2018-10-24 03:39:19 +00:00
|
|
|
## 0.2.5 - (September 29, 2018)
|
2018-08-28 16:19:58 -07:00
|
|
|
### Fixes
|
|
|
|
|
* Fix a possible starvation when polling multiple `Signal` instances outside of
|
|
|
|
|
a tokio reactor (e.g. by using `Future::wait`)
|
2018-08-25 09:50:00 -07:00
|
|
|
|
2018-10-24 03:39:19 +00:00
|
|
|
## 0.2.4 - (August 25, 2018)
|
2018-08-25 11:16:54 -07:00
|
|
|
### Fixes
|
|
|
|
|
* Actually make `unix::bsd` public
|
|
|
|
|
|
2018-10-24 03:39:19 +00:00
|
|
|
## 0.2.3 - (August 25, 2018)
|
2018-08-25 09:50:00 -07:00
|
|
|
### Features
|
2018-10-24 03:39:19 +00:00
|
|
|
* Exposes `SIGINFO` on BSD-based operating systems.
|
2018-08-12 17:17:25 -07:00
|
|
|
|
2018-10-24 03:39:19 +00:00
|
|
|
## 0.2.2 - (August 14, 2018)
|
2018-08-12 17:17:25 -07:00
|
|
|
### Fixes
|
|
|
|
|
* Fix starvation of `Signal`s whenever a `Signal` instance is dropped
|
|
|
|
|
* Fix starvation of individual `Signal`s based on their creation order
|
|
|
|
|
|
2018-10-24 03:39:19 +00:00
|
|
|
## 0.2.1 - (May 27, 2018)
|
2018-08-12 17:17:25 -07:00
|
|
|
### Fixes
|
|
|
|
|
* Bump minimum supported version of `mio` to 0.6.14
|
|
|
|
|
|
2018-10-24 03:39:19 +00:00
|
|
|
## 0.2.0 - (May 7, 2018)
|
2018-05-06 21:50:41 +02:00
|
|
|
#### Features
|
2018-10-24 03:39:19 +00:00
|
|
|
* Uses `tokio` instead of `tokio_core`
|
|
|
|
|
* Supports all 33 signals on FreeBSD
|