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