Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 0 additions & 2 deletions src/binance_fix_connector/fix_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading