diff --git a/README.md b/README.md index c85f06e8..023378e3 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@
- + diff --git a/doc/conf.py b/doc/conf.py index b669fcef..ac8b4ccb 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = u'1.3.2' +version = u'1.4.0' # The full version, including alpha/beta/rc tags. -release = u'1.3.2' +release = u'1.4.0' # 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 f92de9bc..50c55db2 100644 --- a/doc/version.rst +++ b/doc/version.rst @@ -2,6 +2,19 @@ 版本变更 ============================= +1.4.0(2019/12/25) + +* 在 TqSdk 中直接支持复盘功能(详见: :ref:`replay` ) +* 增加回测报告内容(胜率、每手盈亏额比例) +* 修复 web_gui 功能中的部分已知问题 +* 修复在一些情况无法输出回测报告的问题 +* 修复使用 slave/master 多线程模式时的报错问题 +* 修复回测结束前最后一条行情未更新的bug +* 从 logger 中分离从服务器返回的通知信息(以便单独处理或屏蔽) +* 修复使用 TargetPoseTask 实例时可能引发的报错 +* 完善文档内容 + + 1.3.2(2019/12/19) * 修复在填写了画图的 color 参数时引起的报错 diff --git a/setup.py b/setup.py index 46f5a1fe..1eb1de82 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def get_tag(self): setuptools.setup( name='tqsdk', - version="1.3.2", + version="1.4.0", description='TianQin SDK', author='TianQin', author_email='tianqincn@gmail.com', diff --git a/tqsdk/__version__.py b/tqsdk/__version__.py index bd18148e..bdbb22b7 100644 --- a/tqsdk/__version__.py +++ b/tqsdk/__version__.py @@ -1 +1 @@ -__version__ = '1.3.2' \ No newline at end of file +__version__ = '1.4.0' \ No newline at end of file