| OLD | NEW |
| 1 ## 0.6.3 |
| 2 |
| 3 * Messages returned by `Request.change()` and `Response.change()` are marked |
| 4 read whenever the original message is read, and vice-versa. This means that |
| 5 it's possible to read a message on which `change()` has been called and to |
| 6 call `change()` on a message more than once, as long as `read()` is called on |
| 7 only one of those messages. |
| 8 |
| 1 ## 0.6.2+1 | 9 ## 0.6.2+1 |
| 2 | 10 |
| 3 * Support `http_parser` 1.0.0. | 11 * Support `http_parser` 1.0.0. |
| 4 | 12 |
| 5 ## 0.6.2 | 13 ## 0.6.2 |
| 6 | 14 |
| 7 * Added a `body` named argument to `change` method on `Request` and `Response`. | 15 * Added a `body` named argument to `change` method on `Request` and `Response`. |
| 8 | 16 |
| 9 ## 0.6.1+3 | 17 ## 0.6.1+3 |
| 10 | 18 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 | 190 |
| 183 * **BREAKING** Removed `Shelf` prefix from all classes. | 191 * **BREAKING** Removed `Shelf` prefix from all classes. |
| 184 * **BREAKING** `Response` has drastically different constructors. | 192 * **BREAKING** `Response` has drastically different constructors. |
| 185 * *NEW!* `Response` now accepts a body of either `String` or | 193 * *NEW!* `Response` now accepts a body of either `String` or |
| 186 `Stream<List<int>>`. | 194 `Stream<List<int>>`. |
| 187 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 195 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
| 188 | 196 |
| 189 ## 0.1.0 2014-03-02 | 197 ## 0.1.0 2014-03-02 |
| 190 | 198 |
| 191 * First reviewed release | 199 * First reviewed release |
| OLD | NEW |