Skip to content

Commit fb59eeb

Browse files
authored
Merge pull request #34 from Kucoin/python_fix
Merge Python Fix To Main
2 parents 32a48ad + 63c467d commit fb59eeb

File tree

7 files changed

+12
-6
lines changed

7 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ API documentation [Changelog](https://www.kucoin.com/docs-new/change-log)
44

55
Current synchronized API documentation version [20250313](https://www.kucoin.com/docs-new/change-log#20250313)
66

7+
# 2025-04-04(Python 1.2.1.post1)
8+
- Bug Fixes
9+
710
# 2025-03-31(Python 1.2.1)
811
- Optimize WebSocket reconnection logic
912

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The **KuCoin Universal SDK** is the official SDK provided by KuCoin, offering a
3434

3535
### Latest Version: `1.2.0`(Global API version)
3636

37-
### Python Installation(1.2.1)
37+
### Python Installation(1.2.1.post1)
3838

3939
```bash
4040
pip install kucoin-universal-sdk

sdk/python/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ API documentation [Changelog](https://www.kucoin.com/docs-new/change-log)
44

55
Current synchronized API documentation version [20250313](https://www.kucoin.com/docs-new/change-log#20250313)
66

7+
# 2025-04-04(Python 1.2.1.post1)
8+
- Bug Fixes
9+
710
# 2025-03-31(Python 1.2.1)
811
- Optimize WebSocket reconnection logic
912

sdk/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ For an overview of the project and SDKs in other languages, refer to the [Main R
88

99
## 📦 Installation
1010

11-
### Latest Version: `1.2.1`
11+
### Latest Version: `1.2.1.post1`
1212
Install the Python SDK using `pip`:
1313

1414
```bash
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
sdk_version = "v1.2.1"
2-
sdk_generate_date = "2025-03-31"
1+
sdk_version = "v1.2.1.post1"
2+
sdk_generate_date = "2025-04-04"

sdk/python/kucoin_universal_sdk/internal/infra/default_ws_callback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ def range(self, func):
9797
with self.lock:
9898
for key, value in self.topic_prefix.items():
9999
if not func(key, value):
100-
break
100+
continue

sdk/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="kucoin-universal-sdk",
5-
version="1.2.1",
5+
version="1.2.1.post1",
66
description="Official KuCoin Universal SDK",
77
author="KuCoin",
88
author_email="api@kucoin.com",

0 commit comments

Comments
 (0)