Files
tokio/tokio-signal/CHANGELOG.md
T
Carl Lerche b117fc1d65 Bump version to v0.1.13 (#771)
This also bumps the following sub crate versions:

* tokio-current-thread (0.1.4)
* tokio-reactor (0.1.7)
* tokio-signal (0.2.7)
* tokio-threadpool (0.1.9)
* tokio-timer (0.2.8)
* tokio-udp (0.1.3)
* tokio-uds (0.2.4)
2018-11-21 17:11:31 -08:00

1.0 KiB

0.2.7 - (November 21, 2018)

Changed

  • unix::Signal now implements Sync
  • minimize allocations

Fixes

  • unix::Signal now avoids extraneous wakeups generated as a result of dropping other instances

0.2.6 - (October 26, 2018)

Changed

  • Use the signal-hook crate for managing signal registrations

0.2.5 - (September 29, 2018)

Fixes

  • Fix a possible starvation when polling multiple Signal instances outside of a tokio reactor (e.g. by using Future::wait)

0.2.4 - (August 25, 2018)

Fixes

  • Actually make unix::bsd public

0.2.3 - (August 25, 2018)

Features

  • Exposes SIGINFO on BSD-based operating systems.

0.2.2 - (August 14, 2018)

Fixes

  • Fix starvation of Signals whenever a Signal instance is dropped
  • Fix starvation of individual Signals based on their creation order

0.2.1 - (May 27, 2018)

Fixes

  • Bump minimum supported version of mio to 0.6.14

0.2.0 - (May 7, 2018)

Features

  • Uses tokio instead of tokio_core
  • Supports all 33 signals on FreeBSD