Skip to content

Commit 4b5295d

Browse files
committed
[tag] v3.2.3
1 parent 0c2fbf6 commit 4b5295d

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

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

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

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,10 @@ if __name__ == '__main__':
417417
* 提供 本地保存和加载 功能
418418
* 修改 `PyCGraph` 为 `pycgraph`,支持 `pip3 install pycgraph` 安装
419419

420+
[2026.03.24 - v3.2.3 - Chunel]
421+
* 优化 `message` 功能
422+
* 优化 稳定性
423+
420424
</details>
421425

422426
------------

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.2.2"
14+
__PYCGRAPH_VERSION__ = "3.2.3"
1515
__PYCGRAPH_AUTHOR__ = "Chunel"
1616
__PYCGRAPH_AUTHOR_EMAIL__ = "chunel@foxmail.com"
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.2.2")
5+
set_version("3.2.3")
66

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

0 commit comments

Comments
 (0)