Skip to content

Commit cc0d974

Browse files
committed
[tag] v3.1.2
1 parent 3ffe2eb commit cc0d974

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.1)
13+
project(CGraph VERSION 3.1.2)
1414

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

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
![CGraph Skeleton](https://github.com/ChunelFeng/CGraph/blob/main/doc/image/CGraph%20Skeleton.jpg)
3030
<br>
3131

32-
本工程使用纯C++11标准库编写,无任何第三方依赖,并且提供`Python`版本:`PyCGraph`兼容`MacOS``Linux``Windows``Android`系统,支持本地编译和二次开发。编译方法和`PyCGraph`安装方法,请参考 [CGraph 编译说明](https://github.com/ChunelFeng/CGraph/blob/main/COMPILE.md ) <br>
32+
本工程使用纯C++11标准库编写,无任何第三方依赖,兼容`MacOS``Linux``Windows``Android`系统。支持本地编译和二次开发,并且提供`Python`版本:`PyCGraph`。编译和安装方法,请参考 [CGraph 编译说明](https://github.com/ChunelFeng/CGraph/blob/main/COMPILE.md ) <br>
3333

3434
详细功能介绍和用法,请参考 [一面之猿网](http://www.chunel.cn/) 中的文章内容。相关视频在B站持续更新中,欢迎观看和交流:<br>
3535
* [【B站视频】CGraph 入门篇](https://www.bilibili.com/video/BV1mk4y1v7XJ) <br>
@@ -404,10 +404,10 @@ if __name__ == '__main__':
404404
* 提供 C# 和 Java 版本
405405
* 提供 `CODE_OF_CONDUCT.md` 文档
406406

407-
[2025.09.05 - v3.1.2 - Chunel]
407+
[2025.09.06 - v3.1.2 - Chunel]
408408
* 提供 Go 版本
409-
* 优化 消息功能
410-
* 优化 切面功能
409+
* 优化 `message` 功能
410+
* 优化 `aspect` 功能
411411

412412
</details>
413413

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.1"
14+
__PYCGRAPH_VERSION__ = "3.1.2"
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.1")
5+
set_version("3.1.2")
66

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

0 commit comments

Comments
 (0)