| OLD | NEW |
| 1 ## 0.6.3+1 |
| 2 |
| 3 * Cleaned up handling of certain `Map` instances and related dependencies. |
| 4 |
| 1 ## 0.6.3 | 5 ## 0.6.3 |
| 2 | 6 |
| 3 * Messages returned by `Request.change()` and `Response.change()` are marked | 7 * Messages returned by `Request.change()` and `Response.change()` are marked |
| 4 read whenever the original message is read, and vice-versa. This means that | 8 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 | 9 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 | 10 call `change()` on a message more than once, as long as `read()` is called on |
| 7 only one of those messages. | 11 only one of those messages. |
| 8 | 12 |
| 9 ## 0.6.2+1 | 13 ## 0.6.2+1 |
| 10 | 14 |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 | 194 |
| 191 * **BREAKING** Removed `Shelf` prefix from all classes. | 195 * **BREAKING** Removed `Shelf` prefix from all classes. |
| 192 * **BREAKING** `Response` has drastically different constructors. | 196 * **BREAKING** `Response` has drastically different constructors. |
| 193 * *NEW!* `Response` now accepts a body of either `String` or | 197 * *NEW!* `Response` now accepts a body of either `String` or |
| 194 `Stream<List<int>>`. | 198 `Stream<List<int>>`. |
| 195 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 199 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
| 196 | 200 |
| 197 ## 0.1.0 2014-03-02 | 201 ## 0.1.0 2014-03-02 |
| 198 | 202 |
| 199 * First reviewed release | 203 * First reviewed release |
| OLD | NEW |