From 56cf44987d2ae30df671a7a5a21375524b030bdc Mon Sep 17 00:00:00 2001
From: limin
- + diff --git a/doc/conf.py b/doc/conf.py index 7a72e04a..1d7d35c0 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = u'1.5.0' +version = u'1.5.1' # The full version, including alpha/beta/rc tags. -release = u'1.5.0' +release = u'1.5.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 2a84181d..88ab506e 100644 --- a/doc/version.rst +++ b/doc/version.rst @@ -2,6 +2,19 @@ 版本变更 ============================= +1.5.1(2020/01/13) + +* 优化 TqApi 参数 web_gui, 允许指定网页地址和端口(详见: :ref:`web_gui` ) +* 更新优化 vscode 插件以及web 页面 +* 简化画图函数color的参数 +* 增加 barlast 功能函数(详见: :py:meth:`~tqsdk.tafunc.barlast` ) +* 优化多合约k线报错提示及示例 +* 修复 TargetPosTask 进行参数搜索时无法正确执行的bug +* 修复可能触发的回测结果计算报错的问题 +* 增加测试用例 +* 完善文档内容 + + 1.5.0(2020/01/06) * 交易网关升级, **所有用户需升级至 1.5.0 版本以上** diff --git a/setup.py b/setup.py index 86e70f6e..7664d52b 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def get_tag(self): setuptools.setup( name='tqsdk', - version="1.5.0", + version="1.5.1", description='TianQin SDK', author='TianQin', author_email='tianqincn@gmail.com', diff --git a/tqsdk/__version__.py b/tqsdk/__version__.py index 618528c7..1b37c690 100644 --- a/tqsdk/__version__.py +++ b/tqsdk/__version__.py @@ -1 +1 @@ -__version__ = '1.5.0' \ No newline at end of file +__version__ = '1.5.1' \ No newline at end of file