1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
### v0.9.6 (2021-10-07)
- Fix build status badge in README ([#185])
- Add `get_buffer_size`/`get_absolute_path_buffer_size` ([#187])
[#185]: https://github.com/hannobraun/inotify-rs/pull/185
[#187]: https://github.com/hannobraun/inotify-rs/pull/187
### v0.9.5 (2021-10-07)
- Implement `Ord`/`PartialOrd` for `WatchDescriptor` ([#183])
[#183]: https://github.com/hannobraun/inotify-rs/pull/183
### v0.9.4 (2021-09-22)
- Make `Event::into_owned` always available ([#179])
- Implement missing `Debug` implementations ([#180])
[#179]: https://github.com/hannobraun/inotify-rs/pull/179
[#180]: https://github.com/hannobraun/inotify-rs/pull/180
### v0.9.3 (2021-05-12)
- Improve documentation ([#167], [#169])
- Add missing check for invalid file descriptor ([#168])
- Fix unsound use of buffers due to misalignment ([#171])
- Add missing error checks ([#173])
[#167]: https://github.com/hannobraun/inotify-rs/pull/167
[#168]: https://github.com/hannobraun/inotify-rs/pull/168
[#169]: https://github.com/hannobraun/inotify-rs/pull/169
[#171]: https://github.com/hannobraun/inotify-rs/pull/171
[#173]: https://github.com/hannobraun/inotify-rs/pull/173
### v0.9.2 (2020-12-30)
- Upgrade to Tokio 1.0 ([#165])
[#165]: https://github.com/hannobraun/inotify/pull/165
<a name="v0.9.1"></a>
### v0.9.1 (2020-11-09)
- Fix take wake-up ([#161])
[#161]: https://github.com/hannobraun/inotify/pull/161
<a name="v0.9.0"></a>
### v0.9.0 (2020-11-06)
- Update minimum supported Rust version to version 1.47 ([#154])
- Fix documentation: `Inotify::read_events` doesn't handle all events ([#157])
- Update to tokio 0.3 ([#158])
[#154]: https://github.com/hannobraun/inotify/pull/154
[#157]: https://github.com/hannobraun/inotify/pull/157
[#158]: https://github.com/hannobraun/inotify/pull/158
<a name="v0.8.3"></a>
### v0.8.3 (2020-06-05)
- Avoid using `inotify_init1` ([#146])
[#146]: https://github.com/hannobraun/inotify/pull/146
<a name="v0.8.2"></a>
### v0.8.2 (2020-01-25)
- Ensure file descriptor is closed on drop ([#140])
[#140]: https://github.com/inotify-rs/inotify/pull/140
<a name="v0.8.1"></a>
### v0.8.1 (2020-01-23)
No changes, due to a mistake made while releasing this version.
<a name="v0.8.0"></a>
### v0.8.0 (2019-12-04)
- Update to tokio 0.2 and futures 0.3 ([#134])
[#134]: https://github.com/inotify-rs/inotify/pull/134
<a name="v0.7.1"></a>
### v0.7.1 (2020-06-05)
- backport: Avoid using `inotify_init1` ([#146])
[#146]: https://github.com/hannobraun/inotify/pull/146
<a name="v0.7.0"></a>
### v0.7.0 (2019-02-09)
#### Features
* Make stream API more flexible in regards to buffers ([ea3e7a394bf34a6ccce4f2136c0991fe7e8f1f42](ea3e7a394bf34a6ccce4f2136c0991fe7e8f1f42)) (breaking change)
<a name="v0.6.1"></a>
### v0.6.1 (2018-08-28)
#### Bug Fixes
* Don't return spurious filenames ([2f37560f](2f37560f))
<a name="v0.6.0"></a>
## v0.6.0 (2018-08-16)
#### Features
* Handle closing of inotify instance better ([824160fe](824160fe))
* Implement `EventStream` using `mio` ([ba4cb8c7](ba4cb8c7))
<a name="v0.5.1"></a>
### v0.5.1 (2018-02-27)
#### Features
* Add future-based async API ([569e65a7](569e65a7), closes [#49](49))
|