diff --git a/CHANGELOG.md b/CHANGELOG.md index 989adcf..2d4d2bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,16 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [5.7.0] - 2024-04-11 ### Added - [Demo Trading](https://bybit-exchange.github.io/docs/v5/demo) support - Add methods for the [Institutional Loan](https://bybit-exchange.github.io/docs/v5/otc/margin-product-info) endpoints - Add [Account](https://bybit-exchange.github.io/docs/v5/account/wallet-balance) methods `repay_liability()`, `set_collateral_coin()`, `batch_set_collateral_coin()` -- `tld` arg for users in The Netherlands and Hong Kong +- `tld` arg for users in The Netherlands and Hong Kong for `HTTP` sessions ### Fixed -- Options WebSocket failing to maintain connection (#164) - +- Options WebSocket failing to maintain connection (https://github.com/bybit-exchange/pybit/issues/164) ## [5.6.1] - 2023-10-09 diff --git a/pybit/__init__.py b/pybit/__init__.py index 560fd73..cff008e 100644 --- a/pybit/__init__.py +++ b/pybit/__init__.py @@ -1 +1 @@ -VERSION = "5.6.1" +VERSION = "5.7.0" diff --git a/setup.py b/setup.py index 2615a76..ce055df 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='pybit', - version='5.6.1', + version='5.7.0', description='Python3 Bybit HTTP/WebSocket API Connector', long_description=long_description, long_description_content_type="text/markdown",