| OLD | NEW |
| 1 ## 0.11.0 | 1 ## 0.11.0 |
| 2 | 2 |
| 3 * `ScheduledServer.handle` now takes a `shelf.Handler` rather than a custom | 3 * `ScheduledServer.handle` now takes a `shelf.Handler` rather than a custom |
| 4 handler class. | 4 handler class. |
| 5 | 5 |
| 6 * The body of a `test()` or a `setUp()` call may now return a Future. This was |
| 7 already supported by the `unittest` package. The Future is passed to a |
| 8 `wrapFuture` call. |
| 9 |
| 6 ## 0.10.1+1 | 10 ## 0.10.1+1 |
| 7 | 11 |
| 8 * Updated `http` version constraint from `">=0.9.0 <0.10.0"` to | 12 * Updated `http` version constraint from `">=0.9.0 <0.10.0"` to |
| 9 `">=0.9.0 <0.11.0"` | 13 `">=0.9.0 <0.11.0"` |
| 10 | 14 |
| 11 ## 0.10.1 | 15 ## 0.10.1 |
| 12 | 16 |
| 13 * Add a `StreamMatcher.hasMatch` method. | 17 * Add a `StreamMatcher.hasMatch` method. |
| 14 | 18 |
| 15 * The `consumeThrough` and `consumeWhile` matchers for `ScheduledStream` now | 19 * The `consumeThrough` and `consumeWhile` matchers for `ScheduledStream` now |
| 16 take `StreamMatcher`s as well as normal `Matcher`s. | 20 take `StreamMatcher`s as well as normal `Matcher`s. |
| 17 | 21 |
| 18 ## 0.10.0 | 22 ## 0.10.0 |
| 19 | 23 |
| 20 * Convert `ScheduledProcess` to expose `stdout` and `stderr` as | 24 * Convert `ScheduledProcess` to expose `stdout` and `stderr` as |
| 21 `ScheduledStream`s. | 25 `ScheduledStream`s. |
| 22 | 26 |
| 23 * Add a `consumeWhile` matcher for `ScheduledStream`. | 27 * Add a `consumeWhile` matcher for `ScheduledStream`. |
| OLD | NEW |