| OLD | NEW |
| 1 ## 0.6.4+3 |
| 2 |
| 3 * Support `http_parser` 2.0.0. |
| 4 |
| 1 ## 0.6.4+2 | 5 ## 0.6.4+2 |
| 2 | 6 |
| 3 * Fix a bug where the `Content-Type` header didn't interact properly with the | 7 * Fix a bug where the `Content-Type` header didn't interact properly with the |
| 4 `encoding` parameter for `new Request()` and `new Response()` if it wasn't | 8 `encoding` parameter for `new Request()` and `new Response()` if it wasn't |
| 5 lowercase. | 9 lowercase. |
| 6 | 10 |
| 7 ## 0.6.4+1 | 11 ## 0.6.4+1 |
| 8 | 12 |
| 9 * When the `shelf_io` adapter detects an error, print the request context as | 13 * When the `shelf_io` adapter detects an error, print the request context as |
| 10 well as the error itself. | 14 well as the error itself. |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 218 |
| 215 * **BREAKING** Removed `Shelf` prefix from all classes. | 219 * **BREAKING** Removed `Shelf` prefix from all classes. |
| 216 * **BREAKING** `Response` has drastically different constructors. | 220 * **BREAKING** `Response` has drastically different constructors. |
| 217 * *NEW!* `Response` now accepts a body of either `String` or | 221 * *NEW!* `Response` now accepts a body of either `String` or |
| 218 `Stream<List<int>>`. | 222 `Stream<List<int>>`. |
| 219 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 223 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
| 220 | 224 |
| 221 ## 0.1.0 2014-03-02 | 225 ## 0.1.0 2014-03-02 |
| 222 | 226 |
| 223 * First reviewed release | 227 * First reviewed release |
| OLD | NEW |