Skip to content

Commit 55da649

Browse files
committed
[Mod] 更新版本号到1.0.2
1 parent aac1858 commit 55da649

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 1.0.0版本
1+
# 1.0.1版本
22

33
1. 将模块的图标文件信息,改为完整路径字符串
44
2. 调整接口初始化时,接口名称的赋值方式

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,33 @@
1-
# vn.py框架的RPC服务应用
1+
# VeighNa框架的RPC服务应用
22

33
<p align="center">
44
<img src ="https://vnpy.oss-cn-shanghai.aliyuncs.com/vnpy-logo.png"/>
55
</p>
66

77
<p align="center">
8-
<img src ="https://img.shields.io/badge/version-1.0.0-blueviolet.svg"/>
8+
<img src ="https://img.shields.io/badge/version-1.0.1-blueviolet.svg"/>
99
<img src ="https://img.shields.io/badge/platform-linux|windows|mac-yellow.svg"/>
1010
<img src ="https://img.shields.io/badge/python-3.7|3.8|3.9|3.10-blue.svg" />
1111
<img src ="https://img.shields.io/github/license/vnpy/vnpy.svg?color=orange"/>
1212
</p>
1313

1414
## 说明
1515

16-
基于pyzmq开发的RPC服务模块,允许将某一vn.py进程启动为服务端,作为统一的行情和交易路由通道,允许多客户端同时连接,实现实现跨进程或者跨网络的分布式系统。
16+
基于pyzmq开发的RPC服务模块,允许将某一VeighNa进程启动为服务端,作为统一的行情和交易路由通道,允许多客户端同时连接,实现实现跨进程或者跨网络的分布式系统。
1717

1818
## 安装
1919

20-
安装需要基于3.0.0版本以上的[VN Studio](https://www.vnpy.com)
20+
安装环境推荐基于3.0.0版本以上的[**VeighNa Studio**](https://www.vnpy.com)
2121

2222
直接使用pip命令:
2323

2424
```
2525
pip install vnpy_rpcservice
2626
```
2727

28-
下载解压后在cmd中运行
28+
29+
或者下载源代码后,解压后在cmd中运行:
2930

3031
```
31-
pip install -e .
32+
pip install .
3233
```

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[metadata]
22
name = vnpy_rpcservice
3-
version = 1.0.0
3+
version = 1.0.1
44
url = https://www.vnpy.com
55
license = MIT
66
author = Xiaoyou Chen
77
author_email = xiaoyou.chen@mail.vnpy.com
8-
description = RPC service application and gateway for vn.py quant trading framework.
8+
description = RPC service application and gateway for VeighNa quant trading framework.
99
long_description = file: README.md
1010
long_description_content_type = text/markdown
1111
keywords =

vnpy_rpcservice/rpc_gateway/rpc_gateway.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
class RpcGateway(BaseGateway):
1717
"""
18-
vn.py用于连接rpc服务的接口
18+
VeighNa用于连接rpc服务的接口
1919
"""
2020

2121
default_name: str = "RPC"

vnpy_rpcservice/rpc_service/engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
class RpcEngine(BaseEngine):
1818
"""
19-
vn.py的rpc服务引擎
19+
VeighNa的rpc服务引擎
2020
"""
2121
setting_filename: str = "rpc_service_setting.json"
2222

0 commit comments

Comments
 (0)