Skip to content

Commit

Permalink
[Mod] 更新版本号到1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vnpy committed Apr 23, 2023
1 parent 5b2e602 commit e561d39
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,6 +1,7 @@
# 1.1.4版本

1. 加载策略类时,过滤TargetPosTemplate模板
2. 移除策略配置时,同时删除该策略的缓存数据

# 1.1.3版本

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -5,7 +5,7 @@
</p>

<p align="center">
<img src ="https://img.shields.io/badge/version-1.1.3-blueviolet.svg"/>
<img src ="https://img.shields.io/badge/version-1.1.4-blueviolet.svg"/>
<img src ="https://img.shields.io/badge/platform-windows|linux|macos-yellow.svg"/>
<img src ="https://img.shields.io/badge/python-3.7|3.8|3.9|3.10-blue.svg" />
<img src ="https://img.shields.io/github/license/vnpy/vnpy.svg?color=orange"/>
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = vnpy_ctastrategy
version = 1.1.3
version = 1.1.4
url = https://www.vnpy.com
license = MIT
author = Xiaoyou Chen
Expand Down
3 changes: 2 additions & 1 deletion vnpy_ctastrategy/__init__.py
Expand Up @@ -22,6 +22,7 @@


from pathlib import Path
from typing import Type

import importlib_metadata
from vnpy.trader.app import BaseApp
Expand All @@ -47,6 +48,6 @@ class CtaStrategyApp(BaseApp):
app_module: str = __module__
app_path: Path = Path(__file__).parent
display_name: str = "CTA策略"
engine_class: CtaEngine = CtaEngine
engine_class: Type[CtaEngine] = CtaEngine
widget_name: str = "CtaManager"
icon_name: str = str(app_path.joinpath("ui", "cta.ico"))

0 comments on commit e561d39

Please sign in to comment.