Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ message("* * * * * * * * * * * * * * * * * * * * * * * * * * * * *")

cmake_minimum_required(VERSION 3.5.0)

project(CGraph VERSION 3.1.1)
project(CGraph VERSION 3.1.2)

if(NOT DEFINED CMAKE_CXX_STANDARD)
# CGraph默认使用C++11版本,推荐使用C++17版本。暂不支持C++11以下版本
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
![CGraph Skeleton](https://github.com/ChunelFeng/CGraph/blob/main/doc/image/CGraph%20Skeleton.jpg)
<br>

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

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

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

</details>

Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import pybind11

__PYCGRAPH_NAME__ = "PyCGraph"
__PYCGRAPH_VERSION__ = "3.1.1"
__PYCGRAPH_VERSION__ = "3.1.2"
__PYCGRAPH_AUTHOR__ = "Chunel"
__PYCGRAPH_AUTHOR_EMAIL__ = "chunel@foxmail.com"
__PYCGRAPH_DESCRIPTION__ = "CGraph with python api wrapper by pybind11"
Expand Down
2 changes: 1 addition & 1 deletion xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set_project("CGraph")

-- set project version
set_version("3.1.1")
set_version("3.1.2")

-- set language: c++11
set_languages("c++11")
Expand Down
Loading