diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d68e46e..817a6b2b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ message("* * * * * * * * * * * * * * * * * * * * * * * * * * * * *") cmake_minimum_required(VERSION 3.5.0) -project(CGraph VERSION 3.1.2) +project(CGraph VERSION 3.2.0) if(NOT DEFINED CMAKE_CXX_STANDARD) # CGraph默认使用C++11版本,推荐使用C++17版本。暂不支持C++11以下版本 diff --git a/README.md b/README.md index c9d89b6e..b31bbf5b 100644 --- a/README.md +++ b/README.md @@ -189,6 +189,7 @@ if __name__ == '__main__': * [【B站视频】KuiperInfer推理框架 - 一个面向教学的推理框架](https://www.bilibili.com/video/BV1t2421K7HN) * [OGraph](https://github.com/symphony09/ograph) : A simple way to build a pipeline with Go. * [【B站视频】听阿里云大佬分享:OGraph——基于Go的流图调度二三事](https://www.bilibili.com/video/BV19RHce6Evo) +* [incubator-hugegraph-ai](https://github.com/apache/incubator-hugegraph-ai) : The integration of HugeGraph with AI/LLM & GraphRAG * [pybind11](https://github.com/pybind/pybind11) : Seamless operability between C++11 and Python * 本项目Python接口绑定功能,使用pybind11实现 * [【B站视频】pybind11落地实战——PyCGraph是怎样练成的](https://www.bilibili.com/video/BV1ofLdz5EzX) | [飞书文档链接](https://ilyryn6yei.feishu.cn/docx/YDfHdU9mfoTlnqxaTkscRob6nGe) @@ -410,7 +411,7 @@ if __name__ == '__main__': * 优化 `message` 功能 * 优化 `aspect` 功能 -[2025.10.06 - v3.2.0 - Chunel] +[2025.11.02 - v3.2.0 - Chunel] * 提供 本地保存和加载 功能 diff --git a/python/setup.py b/python/setup.py index 3ff82640..6591d228 100644 --- a/python/setup.py +++ b/python/setup.py @@ -11,7 +11,7 @@ import pybind11 __PYCGRAPH_NAME__ = "PyCGraph" -__PYCGRAPH_VERSION__ = "3.1.2" +__PYCGRAPH_VERSION__ = "3.2.0" __PYCGRAPH_AUTHOR__ = "Chunel" __PYCGRAPH_AUTHOR_EMAIL__ = "chunel@foxmail.com" __PYCGRAPH_DESCRIPTION__ = "CGraph with python api wrapper by pybind11" diff --git a/xmake.lua b/xmake.lua index 2df4d10a..dc05ec7b 100644 --- a/xmake.lua +++ b/xmake.lua @@ -2,7 +2,7 @@ set_project("CGraph") -- set project version -set_version("3.1.2") +set_version("3.2.0") -- set language: c++11 set_languages("c++11")