Skip to content

Commit

Permalink
Merge pull request #167 from InjectiveLabs/f/release_0.5.9.1
Browse files Browse the repository at this point in the history
F/release 0.5.9.1
  • Loading branch information
achilleas-kal authored Nov 23, 2022
2 parents 4b2d0a3 + 84dd39a commit e3dcfb6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
14 changes: 3 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ Note that the [sync client](https://github.com/InjectiveLabs/sdk-python/blob/mas


### Changelogs
**0.5.9.1**
* Add skip/limit to BinaryOptionsMarketsRequest

**0.5.9.0**
* Re-gen proto
* Fix MsgRewardsOptOut
Expand All @@ -101,17 +104,6 @@ Note that the [sync client](https://github.com/InjectiveLabs/sdk-python/blob/mas
* Fix sync_timeout_height func with exception handling
* Set explicit version requirements for protobuf and grpcio-tools in pkg

**0.5.8.5**
* Add StreamOrdersHistory
* Add more request params in OrdersHistory

**0.5.8.4**
* Adjust block and timeouts to new block time
* Set explicit version requirements for protobuf and grpcio-tools in Pipfile
* Add order_types as a request param for OrdersHistory
* Re-gen proto files


## License

Copyright © 2021 - 2022 Injective Labs Inc. (https://injectivelabs.org/)
Expand Down
2 changes: 2 additions & 0 deletions pyinjective/async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -925,6 +925,8 @@ async def get_binary_options_markets(self, **kwargs):
req = derivative_exchange_rpc_pb.BinaryOptionsMarketsRequest(
market_status=kwargs.get("market_status"),
quote_denom=kwargs.get("quote_denom"),
skip=kwargs.get("skip"),
limit=kwargs.get("limit"),
)
return await self.stubDerivativeExchange.BinaryOptionsMarkets(req)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
EMAIL = "[email protected]"
AUTHOR = "Injective Labs"
REQUIRES_PYTHON = ">=3.7.0"
VERSION = "0.5.9.0"
VERSION = "0.5.9.1"

REQUIRED = [
"protobuf==3.19.1",
Expand Down

0 comments on commit e3dcfb6

Please sign in to comment.