From e5baeedbfaf98ad01c7350a87d0d6e19e11c4c07 Mon Sep 17 00:00:00 2001
From: shinny-limin
- + diff --git a/doc/conf.py b/doc/conf.py index 15296e5a..ad20b0d0 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = u'1.6.0' +version = u'1.6.1' # The full version, including alpha/beta/rc tags. -release = u'1.6.0' +release = u'1.6.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/version.rst b/doc/version.rst index 6d01eaef..38896c2c 100644 --- a/doc/version.rst +++ b/doc/version.rst @@ -2,6 +2,12 @@ 版本变更 ============================= +1.6.1(2020/02.12) + +* 修复 web_gui 不显示成交记录的问题 +* 修复在 python3.8 下设置 web_gui 参数无效的问题 + + 1.6.0(2020/02/11) * 交易网关升级, **所有用户需升级至 1.6.0 版本以上** diff --git a/setup.py b/setup.py index 90211ff5..9478e12d 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def get_tag(self): setuptools.setup( name='tqsdk', - version="1.6.0", + version="1.6.1", description='TianQin SDK', author='TianQin', author_email='tianqincn@gmail.com', diff --git a/tqsdk/__version__.py b/tqsdk/__version__.py index a8b59de7..5c14ca99 100644 --- a/tqsdk/__version__.py +++ b/tqsdk/__version__.py @@ -1 +1 @@ -__version__ = '1.6.0' \ No newline at end of file +__version__ = '1.6.1' \ No newline at end of file