Skip to content

Commit 699bca0

Browse files
committed
modify changelog
1 parent f027724 commit 699bca0

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.1.6 (2022-08-11)
2+
### Modify
3+
- 支持全局时区配置, 可通过 ClientConfig.timezone 设置时区
4+
5+
16
## 2.1.5 (2022-08-01)
27
### Modify
38
- 交易相关接口支持全局语言配置, 可通过 ClientConfig.language 改变默认语言

tigeropen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
55
@author: gaoan
66
"""
7-
__VERSION__ = '2.1.5'
7+
__VERSION__ = '2.1.6'

tigeropen/examples/client_config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ def get_client_config():
2121
client_config.account = 'your account'
2222
client_config.secret_key = None # 机构交易员专有密钥 (机构用户需要填写, 个人开发者无需填写)
2323
client_config.language = Language.en_US
24+
# client_config.timezone = 'US/Eastern' # 设置全局时区
2425
return client_config

0 commit comments

Comments
 (0)