Skip to content

Commit e3dcfb6

Browse files
Merge pull request #167 from InjectiveLabs/f/release_0.5.9.1
F/release 0.5.9.1
2 parents 4b2d0a3 + 84dd39a commit e3dcfb6

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

README.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ Note that the [sync client](https://github.com/InjectiveLabs/sdk-python/blob/mas
7878

7979

8080
### Changelogs
81+
**0.5.9.1**
82+
* Add skip/limit to BinaryOptionsMarketsRequest
83+
8184
**0.5.9.0**
8285
* Re-gen proto
8386
* Fix MsgRewardsOptOut
@@ -101,17 +104,6 @@ Note that the [sync client](https://github.com/InjectiveLabs/sdk-python/blob/mas
101104
* Fix sync_timeout_height func with exception handling
102105
* Set explicit version requirements for protobuf and grpcio-tools in pkg
103106

104-
**0.5.8.5**
105-
* Add StreamOrdersHistory
106-
* Add more request params in OrdersHistory
107-
108-
**0.5.8.4**
109-
* Adjust block and timeouts to new block time
110-
* Set explicit version requirements for protobuf and grpcio-tools in Pipfile
111-
* Add order_types as a request param for OrdersHistory
112-
* Re-gen proto files
113-
114-
115107
## License
116108

117109
Copyright © 2021 - 2022 Injective Labs Inc. (https://injectivelabs.org/)

pyinjective/async_client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -925,6 +925,8 @@ async def get_binary_options_markets(self, **kwargs):
925925
req = derivative_exchange_rpc_pb.BinaryOptionsMarketsRequest(
926926
market_status=kwargs.get("market_status"),
927927
quote_denom=kwargs.get("quote_denom"),
928+
skip=kwargs.get("skip"),
929+
limit=kwargs.get("limit"),
928930
)
929931
return await self.stubDerivativeExchange.BinaryOptionsMarkets(req)
930932

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
AUTHOR = "Injective Labs"
1919
REQUIRES_PYTHON = ">=3.7.0"
20-
VERSION = "0.5.9.0"
20+
VERSION = "0.5.9.1"
2121

2222
REQUIRED = [
2323
"protobuf==3.19.1",

0 commit comments

Comments
 (0)