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