diff --git a/CHANGELOG.md b/CHANGELOG.md index 212db6a..4c26c41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.0.1 - 2025-05-08 +### Removed +- Removed the references for `auto-reconnect` in the dropcopy session to fix the following [issue](https://github.com/binance/binance-fix-connector-python/issues/2). + ## 1.0.0 - 2025-03-24 ### Added diff --git a/pyproject.toml b/pyproject.toml index 463e313..26d7d3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "binance_fix_connector" -version = "1.0.0" +version = "1.0.1" authors = [{name = "Binance"}] description = "This is a simple Python library that provides access to Binance Financial Information eXchange (FIX) SPOT messages using the FIX protocol." readme = "README.md" diff --git a/src/binance_fix_connector/fix_connector.py b/src/binance_fix_connector/fix_connector.py index 9d9caf4..ef8defb 100644 --- a/src/binance_fix_connector/fix_connector.py +++ b/src/binance_fix_connector/fix_connector.py @@ -201,8 +201,6 @@ def create_drop_copy_session( fix_version=fix_version, heart_bt_int=heart_bt_int, socket_buffer_size=MAX_BUFFER_SIZE, - auto_reconnect=False, - auto_reconnect_attempts=3, reset_seq_num_flag="Y", encrypt_method=0, response_mode=response_mode,