diff --git a/CHANGELOG.md b/CHANGELOG.md index 28826f5..19c84c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,15 @@ 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). -## Unreleased + +## [5.2.0] - 2023-04-18 +### Added +- New asset endpoints: `set_deposit_account()`, `get_internal_deposit_records()`, `get_withdrawable_amount()` + +### Fixed - Ensure that `legacy` submodule is packaged by `setup.py` - Fix non-UTA (normal account) spot margin trading endpoints +- Fix wrong request method for `set_dcp()` ## [5.1.1] - 2023-04-06 diff --git a/pybit/__init__.py b/pybit/__init__.py index e804153..221603a 100644 --- a/pybit/__init__.py +++ b/pybit/__init__.py @@ -1 +1 @@ -VERSION = "5.1.1" +VERSION = "5.2.0" diff --git a/setup.py b/setup.py index 836fabe..2d7414d 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='pybit', - version='5.1.1', + version='5.2.0', description='Python3 Bybit HTTP/WebSocket API Connector', long_description=long_description, long_description_content_type="text/markdown",