| OLD | NEW |
| 1 ## 2.0.1 |
| 2 |
| 3 * Fix a race condition in which a `StateError` could be top-leveled if |
| 4 `Peer.close()` was called before the underlying channel closed. |
| 5 |
| 1 ## 2.0.0 | 6 ## 2.0.0 |
| 2 | 7 |
| 3 * **Breaking change:** all constructors now take a `StreamChannel` rather than a | 8 * **Breaking change:** all constructors now take a `StreamChannel` rather than a |
| 4 `Stream`/`StreamSink` pair. | 9 `Stream`/`StreamSink` pair. |
| 5 | 10 |
| 6 * `Client.sendRequest()` and `Client.sendNotification()` no longer throw | 11 * `Client.sendRequest()` and `Client.sendNotification()` no longer throw |
| 7 `StateError`s after the connection has been closed but before `Client.close()` | 12 `StateError`s after the connection has been closed but before `Client.close()` |
| 8 has been called. | 13 has been called. |
| 9 | 14 |
| 10 * The various `close()` methods may now be called before their corresponding | 15 * The various `close()` methods may now be called before their corresponding |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 * Add `Server.close()`, which closes the underlying request stream and response | 59 * Add `Server.close()`, which closes the underlying request stream and response |
| 55 sink. | 60 sink. |
| 56 | 61 |
| 57 ## 0.0.2+3 | 62 ## 0.0.2+3 |
| 58 | 63 |
| 59 * Widen the version constraint for `stack_trace`. | 64 * Widen the version constraint for `stack_trace`. |
| 60 | 65 |
| 61 ## 0.0.2+2 | 66 ## 0.0.2+2 |
| 62 | 67 |
| 63 * Fix error response to include data from `RpcException` when not a map. | 68 * Fix error response to include data from `RpcException` when not a map. |
| OLD | NEW |