Skip to content

Commit

Permalink
0.36.15:
Browse files Browse the repository at this point in the history
    1. 实现CLI命令行工具 alist-cli,可以快速登录、列出文件
    2. 细节日志优化
    3. 全局超时时间增加到30秒
  • Loading branch information
lee-cq committed Sep 15, 2024
1 parent 5a7c87c commit eb1ed1a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
strategy:
max-parallel: 3
matrix:
python-version: ['3.10', '3.11', '3.12']
alist-version: [ '3.34.0', '3.35.0', '3.36.0']
python-version: [ '3.10', '3.11', '3.12' ]
alist-version: [ '3.36.0', '3.37.1', '3.37.2' ]
fail-fast: false

steps:
Expand Down
1 change: 1 addition & 0 deletions alist_sdk/async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ def __init__(
max_connect=30,
**kwargs,
):
kwargs.setdefault("timeout", 30)
super().__init__(**kwargs)
self.base_url = base_url
self.headers.setdefault("User-Agent", f"Alist-SDK/{__version__}")
Expand Down
1 change: 1 addition & 0 deletions alist_sdk/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ def __init__(
max_connect=30,
**kwargs,
):
kwargs.setdefault("timeout", 30)
super().__init__(**kwargs)
self.base_url = base_url
self.headers.setdefault("User-Agent", f"Alist-SDK/{__version__}")
Expand Down
5 changes: 3 additions & 2 deletions alist_sdk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,9 @@
0.36.15:
1. 实现CLI命令行工具 alist-cli,可以快速登录、列出文件
2. 细节日志优化
3. 全局超时时间增加到30秒
"""

__version__ = "0.36.15-a2"
__version__ = "0.36.15-a3"

ALIST_VERSION = "v3.36.0"
ALIST_VERSION = "v3.37.2"

0 comments on commit eb1ed1a

Please sign in to comment.