Skip to content

Commit

Permalink
Prepare release v0.2.0 (#13)
Browse files Browse the repository at this point in the history
* Prepare release v0.2.0

* Fix typo

* Clarify current functionality of reflection interface in README

Co-authored-by: Louis Ades <[email protected]>
  • Loading branch information
ljades and Louis Ades authored Jul 1, 2020
1 parent f078a72 commit b2eb412
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

### v0.2.0

* Method invocations returned for the GRPC Reflection Interface now accept parameters for `timeout`, `metadata`, `credentials`, `wait_for_ready`, and `compression`, matching the full contract for `UnaryUnaryMultiCallable` objects.

### v0.1.1

* Fixed broken GRPC Reflection Interface. Now instantiates a reflection client as expected.
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class TestMyClient(unittest.TestClient):

## GRPC Reflection Interface

Functionality to create a generic GRPC client based on a GRPC server that has reflection enabled
Functionality to create a generic GRPC client based on a GRPC server that has reflection enabled.

### Sample usage:

Expand All @@ -114,6 +114,8 @@ generic_myservice_client = grpc_reflection_interface.make_json_grpc_client(host,
my_grpc_response = generic_myservice_client["my_grpc_method"](params)
```

Note: This currently only works for unary-unary method types. Adding functionality for stream methods is being looked into and is in the pipeline for future development.


# License

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "eagr"
version = "0.1.1"
version = "0.2.0"
description = "A collection of utilities for making GRPC easier to use in python."
authors = ["Louis Ades <[email protected]>"]

Expand Down

0 comments on commit b2eb412

Please sign in to comment.