Skip to content

Commit e5ebd03

Browse files
committed
[tag] v3.1.1
1 parent 85ffcfc commit e5ebd03

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ message("* * * * * * * * * * * * * * * * * * * * * * * * * * * * *")
1010

1111
cmake_minimum_required(VERSION 3.5.0)
1212

13-
project(CGraph VERSION 3.1.0)
13+
project(CGraph VERSION 3.1.1)
1414

1515
# CGraph默认使用C++11版本,推荐使用C++17版本。暂不支持C++11以下版本
1616
set(CMAKE_CXX_STANDARD 11)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
----
4545

4646
## 二. 入门Demo
47-
> C++ 版本
47+
> <b>C++ 版本</b>
4848
```cpp
4949
#include "CGraph.h"
5050

@@ -94,7 +94,7 @@ int main() {
9494
<br>
9595
如上图所示,图结构执行的时候,首先执行`a`节点。`a`节点执行完毕后,并行执行`b`和`c`节点。`b`和`c`节点全部执行完毕后,再执行`d`节点。
9696
97-
> Python 版本
97+
> <b>Python 版本</b>
9898
9999
```python
100100
import time
@@ -128,7 +128,7 @@ if __name__ == '__main__':
128128
pipeline.process()
129129
```
130130

131-
> 其他版本
131+
> <b>其他版本</b>
132132

133133
* [CsCGraph](https://github.com/ChunelFeng/CsCGraph) : A CSharp native, CGraph-API-liked DAG project
134134
* [JaCGraph](https://github.com/ChunelFeng/JaCGraph) : A Java native, CGraph-API-liked DAG project
@@ -399,7 +399,7 @@ if __name__ == '__main__':
399399
* 提供 Python 和 C++ 混合编程功能
400400
* 提供 Python 打包功能,支持 `pip3 install PyCGraph` 安装
401401

402-
[2025.06.14 - v3.1.1 - Chunel]
402+
[2025.06.15 - v3.1.1 - Chunel]
403403
* 提供 C# 和 Java 版本
404404
* 提供 `CODE_OF_CONDUCT.md` 文档
405405

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import pybind11
1212

1313
__PYCGRAPH_NAME__ = "PyCGraph"
14-
__PYCGRAPH_VERSION__ = "3.1.0"
14+
__PYCGRAPH_VERSION__ = "3.1.1"
1515
__PYCGRAPH_AUTHOR__ = "Chunel"
1616
__PYCGRAPH_AUTHOR_EMAIL__ = "[email protected]"
1717
__PYCGRAPH_DESCRIPTION__ = "CGraph with python api wrapper by pybind11"

xmake.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set_project("CGraph")
33

44
-- set project version
5-
set_version("3.1.0")
5+
set_version("3.1.1")
66

77
-- set language: c++11
88
set_languages("c++11")

0 commit comments

Comments
 (0)