| OLD | NEW |
| 1 ## 1.0.0 |
| 2 |
| 3 * Add a `Client` class for communicating with external JSON-RPC 2.0 servers. |
| 4 |
| 1 ## 0.1.0 | 5 ## 0.1.0 |
| 2 | 6 |
| 3 * Remove `Server.handleRequest()` and `Server.parseRequest()`. Instead, `new | 7 * Remove `Server.handleRequest()` and `Server.parseRequest()`. Instead, `new |
| 4 Server()` takes a `Stream` and a `StreamSink` and uses those behind-the-scenes | 8 Server()` takes a `Stream` and a `StreamSink` and uses those behind-the-scenes |
| 5 for its communication. | 9 for its communication. |
| 6 | 10 |
| 7 * Add `Server.listen()`, which causes the server to begin listening to the | 11 * Add `Server.listen()`, which causes the server to begin listening to the |
| 8 underlying request stream. | 12 underlying request stream. |
| 9 | 13 |
| 10 * Add `Server.close()`, which closes the underlying request stream and response | 14 * Add `Server.close()`, which closes the underlying request stream and response |
| 11 sink. | 15 sink. |
| 12 | 16 |
| 13 ## 0.0.2+3 | 17 ## 0.0.2+3 |
| 14 | 18 |
| 15 * Widen the version constraint for `stack_trace`. | 19 * Widen the version constraint for `stack_trace`. |
| 16 | 20 |
| 17 ## 0.0.2+2 | 21 ## 0.0.2+2 |
| 18 | 22 |
| 19 * Fix error response to include data from `RpcException` when not a map. | 23 * Fix error response to include data from `RpcException` when not a map. |
| OLD | NEW |