diff --git a/CHANGELOG.md b/CHANGELOG.md index 12fc205..63269ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,19 @@ 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.1] - 2022-10-07 +- See below release candidates for further changes. + +## Fixed +- Wrong endpoint path in `usdc_perpetual.py` +- Wrong endpoint path in `account_asset.py` + + ## [2.4.0rc1] - 2022-09-20 ### Fixed - USDC API's timestamp parameter + ## [2.4.0rc0] - 2022-09-15 ### Modified - The way in which the WebSocket handles errors, improving general usage and debugging (tracebacks) as well as clearly defining under which errors should the WebSocket attempt reconnection. diff --git a/pybit/__init__.py b/pybit/__init__.py index 1fac0c7..fcf7e4f 100644 --- a/pybit/__init__.py +++ b/pybit/__init__.py @@ -33,7 +33,7 @@ from json.decoder import JSONDecodeError # Versioning. -VERSION = '2.4.0rc1' +VERSION = '2.4.1' class HTTP: diff --git a/setup.py b/setup.py index bb0feee..f814c17 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='pybit', - version='2.4.0rc1', + version='2.4.1', description='Python3 Bybit HTTP/WebSocket API Connector', long_description=long_description, long_description_content_type='text/markdown',