| OLD | NEW |
| 1 ## 0.5.2 |
| 2 |
| 3 * Add a `Cascade` helper that runs handlers in sequence until one returns a |
| 4 response that's neither a 404 nor a 405. |
| 5 |
| 1 ## 0.5.1+1 | 6 ## 0.5.1+1 |
| 2 | 7 |
| 3 * Capture all asynchronous errors thrown by handlers if they would otherwise be | 8 * Capture all asynchronous errors thrown by handlers if they would otherwise be |
| 4 top-leveled. | 9 top-leveled. |
| 5 | 10 |
| 6 * Add more detail to the README about handlers, middleware, and the rules for | 11 * Add more detail to the README about handlers, middleware, and the rules for |
| 7 implementing an adapter. | 12 implementing an adapter. |
| 8 | 13 |
| 9 ## 0.5.1 | 14 ## 0.5.1 |
| 10 | 15 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 75 |
| 71 * **BREAKING** Removed `Shelf` prefix from all classes. | 76 * **BREAKING** Removed `Shelf` prefix from all classes. |
| 72 * **BREAKING** `Response` has drastically different constructors. | 77 * **BREAKING** `Response` has drastically different constructors. |
| 73 * *NEW!* `Response` now accepts a body of either `String` or | 78 * *NEW!* `Response` now accepts a body of either `String` or |
| 74 `Stream<List<int>>`. | 79 `Stream<List<int>>`. |
| 75 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 80 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
| 76 | 81 |
| 77 ## 0.1.0 2014-03-02 | 82 ## 0.1.0 2014-03-02 |
| 78 | 83 |
| 79 * First reviewed release | 84 * First reviewed release |
| OLD | NEW |