Skip to content

Commit

Permalink
Merge pull request #54 from bybit-exchange/update_changelog
Browse files Browse the repository at this point in the history
Update changelog
  • Loading branch information
dextertd authored Jul 26, 2022
2 parents c4d202b + e6b065a commit 42557f4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
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).

## [2.4.0] - 2022-07-26
### Added
- `HTTP` methods for account asset's [universal transfer API](https://bybit-exchange.github.io/docs/account_asset/#t-enableuniversaltransfer)

### Fixed
- USDC API to use the user's set `recv_window`

### Modified
- Did some internal code reorganisation


## [2.3.1] - 2022-07-20
### Modified
- The `ping_interval` to 20 seconds to ensure WSS connection stability
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,9 @@ Only available for the USDC API.
| Query Transfer List | `query_transfer_list()` |
| Query Subaccount Transfer List | `query_subaccount_transfer_list()` |
| Query Subaccount List | `query_subaccount_list()` |
| Enable Universal Transfer | `enable_universal_transfer()` |
| Create Universal Transfer | `create_universal_transfer()` |
| Query Universal Transfer List | `query_universal_transfer_list()` |
| Query Supported Deposit List | `query_supported_deposit_list()` |
| Query Deposit Records | `query_deposit_records()` |
| Query Withdraw Records | `query_withdraw_records()` |
Expand Down
2 changes: 1 addition & 1 deletion pybit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from json.decoder import JSONDecodeError

# Versioning.
VERSION = '2.3.1'
VERSION = '2.4.0'


class HTTP:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='pybit',
version='2.3.1',
version='2.4.0',
description='Python3 Bybit HTTP/WebSocket API Connector',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 42557f4

Please sign in to comment.