Skip to content

Commit

Permalink
V3.3.1 (#89)
Browse files Browse the repository at this point in the history
* ✨ _dispatch_request default value should be function not string (#68)

* pump version

* black fix

---------

Co-authored-by: Thaweesak Chusri <thaweesak@nimeyo.com>
  • Loading branch information
2pd and chusri committed Mar 21, 2023
1 parent e09bb46 commit d23c9b9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 3.3.1 - 2023-03-21

### Updated
- Merge #68

## 3.3.0 - 2023-01-11

### Add
Expand Down
2 changes: 1 addition & 1 deletion binance/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.3.0"
__version__ = "3.3.1"
2 changes: 1 addition & 1 deletion binance/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def _dispatch_request(self, http_method):
"DELETE": self.session.delete,
"PUT": self.session.put,
"POST": self.session.post,
}.get(http_method, "GET")
}.get(http_method, self.session.get)

def _handle_exception(self, response):
status_code = response.status_code
Expand Down
1 change: 0 additions & 1 deletion binance/websocket/binance_client_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@


class BinanceReconnectingClientFactory(ReconnectingClientFactory):

initialDelay = 0.1
maxDelay = 10
maxRetries = 10
Expand Down

0 comments on commit d23c9b9

Please sign in to comment.