Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# jsonrpcserver Change Log

## 5.0.5 (Nov 27, 2021)

- Documentation.

## 5.0.4 (Oct 27, 2021)

- Add to FAQ.
Expand Down
2 changes: 1 addition & 1 deletion docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Instead of `dispatch`, use:
- `dispatch_to_serializable` to get the response as a dict.
- `dispatch_to_response` to get the response as a namedtuple (either a
`SuccessResponse` or `ErrorResponse`, these are defined in
[response.py](https://github.com/explodinglabs/jsonrpcserver/blob/master/jsonrpcserver/response.py)).
[response.py](https://github.com/explodinglabs/jsonrpcserver/blob/main/jsonrpcserver/response.py)).

For these functions, if the request was a batch, you'll get a list of
responses. If the request was a notification, you'll get `None`.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
zip_safe=False,
packages=["jsonrpcserver"],
url="https://github.com/explodinglabs/jsonrpcserver",
version="5.0.4",
version="5.0.5",
)