• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 0.8.6
2
3## Added
4
5* `Interest::PRIORITY` on Linux and Android, to trigger `Event::is_priority`
6  (https://github.com/tokio-rs/mio/pull/1647).
7
8## Changed
9
10* Updated windows-sys to 0.45
11  (https://github.com/tokio-rs/mio/pull/1644).
12* We started testing with sanitizers on the CI
13  (https://github.com/tokio-rs/mio/pull/1648).
14
15## Fixed
16
17* A number of potential fd leaks when setup resulted in an error right after
18  creation (https://github.com/tokio-rs/mio/pull/1636).
19* Less truncating for timeout values in `Poll::poll`
20  (https://github.com/tokio-rs/mio/pull/1642).
21
22# 0.8.5
23
24## Changed
25
26* Updated `windows-sys` to 0.42.0
27  (https://github.com/tokio-rs/mio/pull/1624).
28* Officially document Wine as not supported, some people claimed it worked,
29  other claims it doesn't, but nobody stepped up to fix the problem
30  (https://github.com/tokio-rs/mio/pull/1596).
31* Switch to GitHub Actions
32  (https://github.com/tokio-rs/mio/pull/1598, https://github.com/tokio-rs/mio/pull/1601).
33* Documented the current Poll::poll time behaviour
34  (https://github.com/tokio-rs/mio/pull/1603).
35
36## Fixed
37
38* Timeout less than one millisecond becoming zero millsiconds
39  (https://github.com/tokio-rs/mio/pull/1615, https://github.com/tokio-rs/mio/pull/1616)
40* Undefined reference to `epoll\_create1` on Android API level < 21.
41  (https://github.com/tokio-rs/mio/pull/1590).
42
43# 0.8.4
44
45## Added
46
47* Support `Registery::try_clone` on `wasm32-wasi`
48  (https://github.com/tokio-rs/mio/pull/1576).
49* Add docs about polling without registering event sources
50  (https://github.com/tokio-rs/mio/pull/1585).
51
52# 0.8.3
53
54## Changed
55
56* Replace `winapi` dependency with `windows-sys`.
57  (https://github.com/tokio-rs/mio/pull/1556).
58* Future proofed the kevent ABI for FreeBSD
59  (https://github.com/tokio-rs/mio/pull/1572).
60
61## Fixed
62
63* Improved support for Redox, making it possible to run on stable Rust
64  (https://github.com/tokio-rs/mio/pull/1555).
65* Don't ignore EAGAIN in UDS connect call
66  (https://github.com/tokio-rs/mio/pull/1564).
67* Documentation of `TcpStream::connect`
68  (https://github.com/tokio-rs/mio/pull/1565).
69
70# 0.8.2
71
72## Added
73
74* Experimental support for Redox.
75
76# 0.8.1
77
78## Added
79
80* Add `try_io` method to all I/O types (#1551). This execute a user defined I/O
81  closure while updating Mio's internal state ensuring that the I/O type
82  receives more events if it hits a WouldBlock error. This is added to the
83  following types:
84   * `TcpStream`
85   * `UdpSocket`
86   * `UnixDatagram`
87   * `UnixStream`
88   * `unix::pipe::Sender`
89   * `unix::pipe::Receiver`
90* Basic, experimental support for `wasm32-wasi` target (#1549). Note that a lot
91  of time type are still missing, e.g. the `Waker`, and may never be possible to
92  implement.
93
94# 0.8.0
95
96## Removed
97
98* Deprecated features (https://github.com/tokio-rs/mio/commit/105f8f2afb57b01ddea716a0aa9720f226c520e3):
99  * extra-docs (always enabled)
100  * tcp (replaced with "net" feature).
101  * udp (replaced with "net" feature).
102  * uds (replaced with "net" feature).
103  * pipe (replaced with "os-ext" feature).
104  * os-util (replaced with "os-ext" feature).
105* `TcpSocket` type
106  (https://github.com/tokio-rs/mio/commit/02e9be41f27daf822575444fdd2b3067433a5996).
107  The socket2 crate provides all the functionality and more.
108* Support for Solaris, it never really worked anyway
109  (https://github.com/tokio-rs/mio/pull/1528).
110
111## Changes
112
113* Update minimum Rustc version (MSVR) to 1.46.0
114  (https://github.com/tokio-rs/mio/commit/5c577efecd23750a9a3e0f6ad080ab98f14a255d).
115
116## Added
117
118* `UdpSocket::peer_addr`
119  (https://github.com/tokio-rs/mio/commit/5fc104d08e0e74c8a19247f7cba0f058699fc438).
120
121# 0.7.14
122
123## Fixes
124
125* Remove use unsound internal macro (#1519).
126
127## Added
128
129* `sys::unix::SocketAddr::as_abstract_namespace()` (#1520).
130
131# 0.7.13
132
133## Fixes
134
135* Fix `Registry::try_clone` invalid usage of `F_DUPFD_CLOEXEC` (#1497,
136  https://github.com/tokio-rs/mio/commit/2883f5c1f35bf1a59682c5ffc4afe6b97d7d6e68).
137
138# 0.7.12 (yanked)
139
140## Fixes
141
142* Set `FD_CLOEXEC` when calling `Registry::try_clone`
143  (https://github.com/tokio-rs/mio/commit/d1617b567ff6bc669d71e367d22e0e93ff7e2e24 for epoll and
144  (https://github.com/tokio-rs/mio/commit/b367a05e408ca90a26383c3aa16d8a16f019dc59 for kqueue).
145
146# 0.7.11
147
148## Fixes
149
150* Fix missing feature of winapi.
151  (https://github.com/tokio-rs/mio/commit/a7e61db9e3c2b929ef1a33532bfcc22045d163ce).
152
153# 0.7.10
154
155## Fixes
156
157* Fix an instance of not doc(cfg(.*))
158  (https://github.com/tokio-rs/mio/commit/25e8f911357c740034f10a170dfa4ea1b28234ce).
159
160# 0.7.9
161
162## Fixes
163
164* Fix error handling in `NamedPipe::write`
165  (https://github.com/tokio-rs/mio/commit/aec872be9732e5c6685100674278be27f54a271b).
166* Use `accept(2)` on x86 Android instead of `accept4(2)`
167  (https://github.com/tokio-rs/mio/commit/6f86b925d3e48f30905d5cfa54348acf3f1fa036,
168  https://github.com/tokio-rs/mio/commit/8d5414880ab82178305ac1d2c16d715e58633d3e).
169* Improve error message when opening AFD device
170  (https://github.com/tokio-rs/mio/commit/139f7c4422321eb4a17b14ae2c296fddd19a8804).
171
172# 0.7.8
173
174## Fixes
175
176* Fix `TcpStream::set_linger` on macOS
177  (https://github.com/tokio-rs/mio/commit/175773ce02e85977db81224c782c8d140aba8543).
178* Fix compilation on DragonFlyBSD
179  (https://github.com/tokio-rs/mio/commit/b51af46b28871f8dd3233b490ee62237ffed6a26).
180
181# 0.7.7
182
183## Added
184
185* `UdpSocket::only_v6`
186  (https://github.com/tokio-rs/mio/commit/0101e05a800f17fb88f4315d9b9fe0f08cca6e57).
187* `Clone` implementation for `Event`
188  (https://github.com/tokio-rs/mio/commit/26540ebbae89df6d4d08465c56f715d8f2addfc3).
189* `AsRawFd` implementation for `Registry`
190  (https://github.com/tokio-rs/mio/commit/f70daa72da0042b1880256164774c3286d315a02).
191* `Read` and `Write` implementation for `&unix::pipe::Sender` and `Receiver`,
192  that is on the reference to them, an implementation existed on the types
193  themselves already
194  (https://github.com/tokio-rs/mio/commit/1be481dcbbcb6906364008b5d61e7f53cddc3eb3).
195
196## Fixes
197
198* Underflow in `SocketAddr::address`
199  (https://github.com/tokio-rs/mio/commit/6d3fa69240cd4bb95e9d34605c660c30245a18bd).
200* Android build with the net feature enabled, but with os-poll disabled
201  (https://github.com/tokio-rs/mio/commit/49d8fd33e026ad6e2c055d05d6667180ba2af7be).
202* Solaris build with the net feature enabled, but with os-poll disabled
203  (https://github.com/tokio-rs/mio/commit/a6e025e9d9511639ec106ebedc0dd312bdc9be12).
204* Ensure that `Waker::wake` works on illumos systems with poor `pipe(2)` and
205  `epoll(2)` interaction using `EPOLLET`
206  (https://github.com/tokio-rs/mio/commit/943d4249dcc17cd8b4d2250c4fa19116097248fa).
207* Fix `unix::pipe` on illumos
208  (https://github.com/tokio-rs/mio/commit/0db49f6d5caf54b12176821363d154384357e70a).
209
210# 0.7.6
211
212## Added
213
214* `net` feature, replaces `tcp`, `udp` and `uds` features
215  (https://github.com/tokio-rs/mio/commit/a301ba520a8479b459c4acdcefa4a7c5eea818c7).
216* `os-ext` feature, replaces `os-util` and `pipe` features
217  (https://github.com/tokio-rs/mio/commit/f5017fae8a3d3bb4b4cada25b01a2d76a406badc).
218* Added keepalive support to `TcpSocket`
219  (https://github.com/tokio-rs/mio/commit/290c43a96662d54ab7c4b8814e5a9f9a9e523fda).
220* `TcpSocket::set_{send, recv}_buffer_size`
221  (https://github.com/tokio-rs/mio/commit/40c4af79bf5b32b8fbdbf6f2e5c16290e1d3d406).
222* `TcpSocket::get_linger`
223  (https://github.com/tokio-rs/mio/commit/13e82ced655bbb6e2729226e485a7de9f2c2ccd9).
224* Implement `IntoRawFd` for `TcpSocket`
225  (https://github.com/tokio-rs/mio/commit/50548ed45d0b2c98f1f2e003e210d14195284ef4).
226
227## Deprecated
228
229* The `tcp`, `udp` and `uds` features, replaced by a new `net` feature.
230  (https://github.com/tokio-rs/mio/commit/a301ba520a8479b459c4acdcefa4a7c5eea818c7).
231* The `extra-docs` feature, now enabled by default.
232  (https://github.com/tokio-rs/mio/commit/25731e8688a2d91c5c700674a2c2d3841240ece1).
233* The `os-util` and `pipe` features, replaced by a new `os-ext` feature.
234  (https://github.com/tokio-rs/mio/commit/f5017fae8a3d3bb4b4cada25b01a2d76a406badc).
235
236## Fixes
237
238* Incorrect assumption of the layout of `std::net::SocketAddr`. Previously Mio
239  would assume that `SocketAddrV{4,6}` had the same layout as
240  `libc::sockaddr_in(6)`, however this is not guaranteed by the standard
241  library.
242  (https://github.com/tokio-rs/mio/commit/152e0751f0be1c9b0cbd6778645b76bcb0eba93c).
243* Also bumped the miow dependency to version 0.3.6 to solve the same problem as
244  above.
245
246# 0.7.5
247
248## Added
249
250* `TcpSocket::get_localaddr()` retrieves local address
251  (https://github.com/tokio-rs/mio/commit/b41a022b2242eef1969c70c8ba93e04c528dba47).
252* `TcpSocket::set_reuseport()` & `TcpSocket::get_reuseport()` configures and reads `SO_REUSEPORT`
253  (https://github.com/tokio-rs/mio/commit/183bbe409ab69cbf9db41d0263b41ec86202d9a0).
254* `unix:pipe()` a wrapper around pipe(2) sys call
255  (https://github.com/tokio-rs/mio/commit/2b7c0967a7362303946deb3d4ca2ae507af6c72d).
256* Add a check that a single Waker is active per Poll instance (only in debug mode)
257  (https://github.com/tokio-rs/mio/commit/f4874f28b32efcf4841691884c65a89734d96a56).
258* Added `Interest:remove()`
259  (https://github.com/tokio-rs/mio/commit/b8639c3d9ac07bb7e2e27685680c8a6510fa1357).
260
261# 0.7.4
262
263## Fixes
264
265* lost "socket closed" events on windows
266  (https://github.com/tokio-rs/mio/commit/50c299aca56c4a26e5ed20c283007239fbe6a7a7).
267
268## Added
269
270* `TcpSocket::set_linger()` configures SO_LINGER
271  (https://github.com/tokio-rs/mio/commit/3b4096565c1a879f651b8f8282ecdcbdbd5c92d3).
272
273# 0.7.3
274
275## Added
276
277* `TcpSocket` for configuring a TCP socket before connecting or listening
278  (https://github.com/tokio-rs/mio/commit/5b09e60d0f64419b989bda88c86a3147334a03b3).
279
280# 0.7.2
281
282## Added
283
284* Windows named pipe support.
285  (https://github.com/tokio-rs/mio/commit/52e8c2220e87696d20f13561402bcaabba4136ed).
286
287# 0.7.1
288
289## Reduced support for 32-bit Apple targets
290
291In January 2020 Rust reduced its support for 32-bit Apple targets
292(https://blog.rust-lang.org/2020/01/03/reducing-support-for-32-bit-apple-targets.html).
293Starting with v0.7.1 Mio will do the same as we're no longer checking 32 bit
294iOS/macOS on our CI.
295
296## Added
297
298* Support for illumos
299  (https://github.com/tokio-rs/mio/commit/976f2354d0e8fbbb64fba3bf017d7131f9c369a0).
300* Report `epoll(2)`'s `EPOLLERR` event as `Event::is_write_closed` if it's the
301  only event
302  (https://github.com/tokio-rs/mio/commit/0c77b5712d675eeb9bd43928b5dd7d22b2c7ac0c).
303* Optimised event::Iter::{size_hint, count}
304  (https://github.com/tokio-rs/mio/commit/40df934a11b05233a7796c4de19a4ee06bc4e03e).
305
306## Fixed
307
308* Work around Linux kernel < 2.6.37 bug on 32-bits making timeouts longer then
309  ~30 minutes effectively infinite
310  (https://github.com/tokio-rs/mio/commit/d555991f5ee81f6c1eec0fe481557d3d5b8d5ff4).
311* Set `SO_NOSIGPIPE` on all sockets (not just UDP) on for Apple targets
312  (https://github.com/tokio-rs/mio/commit/b8bbdcb0d3236f4c4acb257996d42a88dc9987d9).
313* Properly handle `POLL_ABORT` on Windows
314  (https://github.com/tokio-rs/mio/commit/a98da62b3ed1eeed1770aaca12f46d647e4fa749).
315* Improved error handling around failing `SIO_BASE_HANDLE` calls on Windows
316  (https://github.com/tokio-rs/mio/commit/b15fc18458a79ef8a51f73effa92548650f4e5dc).
317
318## Changed
319
320* On NetBSD we now use `accept4(2)`
321  (https://github.com/tokio-rs/mio/commit/4e306addc7144f2e02a7e8397c220b179a006a19).
322* The package uploaded to crates.io should be slightly smaller
323  (https://github.com/tokio-rs/mio/commit/eef8d3b9500bc0db957cd1ac68ee128ebc68351f).
324
325## Removed
326
327* Dependency on `lazy_static` on Windows
328  (https://github.com/tokio-rs/mio/commit/57e4c2a8ac153bc7bb87829e22cf0a21e3927e8a).
329
330# 0.7.0
331
332Version 0.7 of Mio contains various major changes compared to version 0.6.
333Overall a large number of API changes have been made to reduce the complexity of
334the implementation and remove overhead where possible.
335
336Please refer to the [blog post about
3370.7-alpha.1](https://tokio.rs/blog/2019-12-mio-v0.7-alpha.1/) for additional
338information.
339
340## Added
341
342* `Interest` structure that replaces `Ready` in registering event sources.
343* `Registry` structure that separates the registering and polling functionality.
344* `Waker` structure that allows another thread to wake a thread polling `Poll`.
345* Unix Domain Socket (UDS) types: `UnixDatagram`, `UnixListener` and
346  `UnixStream`.
347
348## Removed
349
350* All code deprecated in 0.6 was removed in 0.7.
351* Support for Fuchsia was removed as the code was unmaintained.
352* Support for Bitrig was removed, rustc dropped support for it also.
353* `UnixReady` was merged into `Ready`.
354* Custom user-space readiness queue was removed, this includes the public
355  `Registration` and `SetReadiness` types.
356* `PollOpt` was removed and all registrations use edge-triggers. See the upgrade
357  guide on how to process event using edge-triggers.
358* The network types (types in the `net` module) now support only the same API as
359  found in the standard library, various methods on the types were removed.
360* `TcpStream` now supports vectored I/O.
361* `Poll::poll_interruptible` was removed. Instead `Poll::poll` will now return
362  an error if one occurs.
363* `From<usize>` is removed from `Token`, the internal field is still public, so
364  `Token(my_token)` can still be used.
365
366## Changed
367
368* Various documentation improvements were made around correct usage of `Poll`
369  and registered event sources. It is recommended to reread the documentation of
370  at least `event::Source` and `Poll`.
371* Mio now uses Rust 2018 and rustfmt for all code.
372* `Event` was changed to be a wrapper around the OS event. This means it can be
373  significantly larger on some OSes.
374* `Ready` was removed and replaced with various `is_*` methods on `Event`. For
375  example instead checking for readable readiness using
376  `Event::ready().is_readable()`, you would call `Event::is_readable()`.
377* `Ready::is_hup` was removed in favour of `Event::is_read_closed` and
378  `Event::is_write_closed`.
379* The Iterator implementation of `Events` was changed to return `&Event`.
380* `Evented` was renamed to `event::Source` and now takes mutable reference to
381  the source.
382* Minimum supported Rust version was increased to 1.39.
383* By default Mio now uses a shim implementation. To enable the full
384  implementation, that uses the OS, enable the `os-oll` feature. To enable the
385  network types use `tcp`, `udp` and/or `uds`. For more documentation on the
386  features see the `feature` module in the API documentation (requires the
387  `extra-docs` feature).
388* The entire Windows implementation was rewritten.
389* Various optimisation were made to reduce the number of system calls in
390  creating and using sockets, e.g. making use of `accept4(2)`.
391* The `fmt::Debug` implementation of `Events` is now actually useful as it
392  prints all `Event`s.
393
394# 0.6.23 (Dec 01, 2020)
395
396### Changed
397- **MSRV**: Increased the MSRV from 1.18.0 (Jun 8, 2017) to 1.31.0 (Dec 6,
398  2018)
399  (https://github.com/tokio-rs/mio/commit/4879e0d32ddfd98e762fc87240e594a3ad8fca30).
400
401### Fixed
402- Work around Linux kernel < 2.6.37 bug on 32-bits making timeouts longer then
403  ~30 minutes effectively infinite
404  (https://github.com/tokio-rs/mio/commit/e7cba59950e9c9fa6194e29b5b1e72029e3df455).
405- Update miow and net2 depedencies to get rid of invalid memory layout assumption
406  (https://github.com/tokio-rs/mio/commit/13f02ac0a86d7c0c0001e5ff8960a0b4340d075c).
407
408# 0.6.22 (May 01, 2020)
409
410### Added
411- Add support for illumos target (#1294)
412
413# 0.6.21 (November 27, 2019)
414
415### Fixed
416- remove `=` dependency on `cfg-if`.
417
418# 0.6.20 (November 21, 2019)
419
420### Fixed
421- Use default IOCP concurrency value (#1161).
422- setting FD_CLOEXEC in pipe (#1095).
423
424# 0.6.19 (May 28, 2018)
425
426### Fixed
427- Do not trigger HUP events on kqueue platforms (#958).
428
429# 0.6.18 (May 24, 2018)
430
431### Fixed
432- Fix compilation on kqueue platforms with 32bit C long (#948).
433
434# 0.6.17 (May 15, 2018)
435
436### Fixed
437- Don't report `RDHUP` as `HUP` (#939)
438- Fix lazycell related compilation issues.
439- Fix EPOLLPRI conflicting with READABLE
440- Abort process on ref count overflows
441
442### Added
443- Define PRI on all targets
444
445# 0.6.16 (September 5, 2018)
446
447* Add EPOLLPRI readiness to UnixReady on supported platforms (#867)
448* Reduce spurious awaken calls (#875)
449
450# 0.6.15 (July 3, 2018)
451
452* Implement `Evented` for containers (#840).
453* Fix android-aarch64 build (#850).
454
455# 0.6.14 (March 8, 2018)
456
457* Add `Poll::poll_interruptible` (#811)
458* Add `Ready::all` and `usize` conversions (#825)
459
460# 0.6.13 (February 5, 2018)
461
462* Fix build on DragonFlyBSD.
463* Add `TcpListener::from_std` that does not require the socket addr.
464* Deprecate `TcpListener::from_listener` in favor of from_std.
465
466# 0.6.12 (January 5, 2018)
467
468* Add `TcpStream::peek` function (#773).
469* Raise minimum Rust version to 1.18.0.
470* `Poll`: retry select() when interrupted by a signal (#742).
471* Deprecate `Events` index access (#713).
472* Add `Events::clear` (#782).
473* Add support for `lio_listio` (#780).
474
475# 0.6.11 (October 25, 2017)
476
477* Allow register to take empty interest (#640).
478* Fix bug with TCP errors on windows (#725).
479* Add TcpListener::accept_std (#733).
480* Update IoVec to fix soundness bug -- includes behavior change. (#747).
481* Minimum Rust version is now 1.14.0.
482* Fix Android x86_64 build.
483* Misc API & doc polish.
484
485# 0.6.10 (July 27, 2017)
486
487* Experimental support for Fuchsia
488* Add `only_v6` option for UDP sockets
489* Fix build on NetBSD
490* Minimum Rust version is now 1.13.0
491* Assignment operators (e.g. `|=`) are now implemented for `Ready`
492
493# 0.6.9 (June 7, 2017)
494
495* More socket options are exposed through the TCP types, brought in through the
496  `net2` crate.
497
498# 0.6.8 (May 26, 2017)
499
500* Support Fuchia
501* POSIX AIO support
502* Fix memory leak caused by Register::new2
503* Windows: fix handling failed TCP connections
504* Fix build on aarch64-linux-android
505* Fix usage of `O_CLOEXEC` with `SETFL`
506
507# 0.6.7 (April 27, 2017)
508
509* Ignore EPIPE coming out of `kevent`
510* Timer thread should exit when timer is dropped.
511
512# 0.6.6 (March 22, 2017)
513
514* Add send(), recv() and connect() to UDPSocket.
515* Fix bug in custom readiness queue
516* Move net types into `net` module
517
518# 0.6.5 (March 14, 2017)
519
520* Misc improvements to kqueue bindings
521* Add official support for iOS, Android, BSD
522* Reimplement custom readiness queue
523* `Poll` is now `Sync`
524* Officially deprecate non-core functionality (timers, channel, etc...)
525* `Registration` now implements `Evented`
526* Fix bug around error conditions with `connect` on windows.
527* Use iovec crate for scatter / gather operations
528* Only support readable and writable readiness on all platforms
529* Expose additional readiness in a platform specific capacity
530
531# 0.6.4 (January 24, 2017)
532
533* Fix compilation on musl
534* Add `TcpStream::from_stream` which converts a std TCP stream to Mio.
535
536# 0.6.3 (January 22, 2017)
537
538* Implement readv/writev for `TcpStream`, allowing vectored reads/writes to
539  work across platforms
540* Remove `nix` dependency
541* Implement `Display` and `Error` for some channel error types.
542* Optimize TCP on Windows through `SetFileCompletionNotificationModes`
543
544# 0.6.2 (December 18, 2016)
545
546* Allow registration of custom handles on Windows (like `EventedFd` on Unix)
547* Send only one byte for the awakener on Unix instead of four
548* Fix a bug in the timer implementation which caused an infinite loop
549
550# 0.6.1 (October 30, 2016)
551
552* Update dependency of `libc` to 0.2.16
553* Fix channel `dec` logic
554* Fix a timer bug around timeout cancellation
555* Don't allocate buffers for TCP reads on Windows
556* Touched up documentation in a few places
557* Fix an infinite looping timer thread on OSX
558* Fix compile on 32-bit OSX
559* Fix compile on FreeBSD
560
561# 0.6.0 (September 2, 2016)
562
563* Shift primary API towards `Poll`
564* `EventLoop` and types to `deprecated` mod. All contents of the
565  `deprecated` mod will be removed by Mio 1.0.
566* Increase minimum supported Rust version to 1.9.0
567* Deprecate unix domain socket implementation in favor of using a
568  version external to Mio. For example: https://github.com/alexcrichton/mio-uds.
569* Remove various types now included in `std`
570* Updated TCP & UDP APIs to match the versions in `std`
571* Enable implementing `Evented` for any type via `Registration`
572* Rename `IoEvent` -> `Event`
573* Access `Event` data via functions vs. public fields.
574* Expose `Events` as a public type that is passed into `Poll`
575* Use `std::time::Duration` for all APIs that require a time duration.
576* Polled events are now retrieved via `Events` type.
577* Implement `std::error::Error` for `TimerError`
578* Relax `Send` bound on notify messages.
579* Remove `Clone` impl for `Timeout` (future proof)
580* Remove `mio::prelude`
581* Remove `mio::util`
582* Remove dependency on bytes
583
584# 0.5.0 (December 3, 2015)
585
586* Windows support (#239)
587* NetBSD support (#306)
588* Android support (#295)
589* Don't re-export bytes types
590* Renamed `EventLoop::register_opt` to `EventLoop::register` (#257)
591* `EventLoopConfig` is now a builder instead of having public struct fields. It
592  is also no longer `Copy`. (#259)
593* `TcpSocket` is no longer exported in the public API (#262)
594* Integrate with net2. (#262)
595* `TcpListener` now returns the remote peer address from `accept` as well (#275)
596* The `UdpSocket::{send_to, recv_from}` methods are no longer generic over `Buf`
597  or `MutBuf` but instead take slices directly. The return types have also been
598  updated to return the number of bytes transferred. (#260)
599* Fix bug with kqueue where an error on registration prevented the
600  changelist from getting flushed (#276)
601* Support sending/receiving FDs over UNIX sockets (#291)
602* Mio's socket types are permanently associated with an EventLoop (#308)
603* Reduce unnecessary poll wakeups (#314)
604
605
606# 0.4.1 (July 21, 2015)
607
608* [BUGFIX] Fix notify channel concurrency bug (#216)
609
610# 0.4.0 (July 16, 2015)
611
612* [BUGFIX] EventLoop::register requests all events, not just readable.
613* [BUGFIX] Attempting to send a message to a shutdown event loop fails correctly.
614* [FEATURE] Expose TCP shutdown
615* [IMPROVEMENT] Coalesce readable & writable into `ready` event (#184)
616* [IMPROVEMENT] Rename TryRead & TryWrite function names to avoid conflict with std.
617* [IMPROVEMENT] Provide TCP and UDP types in Mio (path to windows #155)
618* [IMPROVEMENT] Use clock_ticks crate instead of time (path to windows #155)
619* [IMPROVEMENT] Move unix specific features into mio::unix module
620* [IMPROVEMENT] TcpListener sets SO_REUSEADDR by default
621