Skip to content

Commit 81dfa4c

Browse files
committed
[tag] v3.1.0
1 parent 26e12ec commit 81dfa4c

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
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.0.0)
13+
project(CGraph VERSION 3.1.0)
1414

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

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<a href="https://github.com/ChunelFeng/CGraph"><img src="https://badgen.net/badge/os/MacOS,Linux,Windows/cyan?list=1" alt="os"></a>
44
<a href="https://github.com/ChunelFeng/CGraph/stargazers"><img src="https://badgen.net/github/stars/ChunelFeng/CGraph?color=cyan" alt="stars"></a>
55
<a href="https://github.com/ChunelFeng/CGraph/network/members"><img src="https://badgen.net/github/forks/ChunelFeng/CGraph?color=cyan" alt="forks"></a>
6+
<a href="https://badge.fury.io/py/PyCGraph"><img src="https://badge.fury.io/py/PyCGraph.svg" alt="pypi"></a>
67
<a href="https://www.codefactor.io/repository/github/chunelfeng/cgraph/overview/main"><img src="https://www.codefactor.io/repository/github/chunelfeng/cgraph/badge/main" alt="CodeFactor" /></a>
78
</p>
89

@@ -387,8 +388,9 @@ if __name__ == '__main__':
387388
* 更新`tutorial`内容
388389

389390
[2025.05.04 - v3.1.0 - Chunel]
390-
* 完善 Python 版本功能
391-
* 提供 Python 打包功能,MacOS 和 Windows 用户可以通过 `pip3 install PyCGraph` 安装
391+
* 提供全量功能 Python 版本
392+
* 提供 Python 和 C++ 混合编程功能
393+
* 提供 Python 打包功能,支持 `pip3 install PyCGraph` 安装
392394

393395
</details>
394396

@@ -397,7 +399,6 @@ if __name__ == '__main__':
397399
<summary><b>附录-2. 感谢</b></summary>
398400

399401
* 感谢 [Doocs 微信公众号](https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzIxNjA5ODQ0OQ==&action=getalbum&album_id=1989460124624551937&scene=173&from_msgid=2654703194&from_itemidx=1&count=3&nolastread=1#wechat_redirect) 刊登相关介绍文档,欢迎加入 [Doocs 开源社区](https://github.com/doocs)
400-
401402
* 感谢《HelloGithub》期刊介绍和推荐:[HelloGithub 第70期](https://github.com/521xueweihan/HelloGitHub/blob/master/content/HelloGitHub70.md)
402403

403404
<p align="center"><img src="https://github.com/ChunelFeng/CGraph/blob/main/doc/image/HelloGithub%20Logo.gif"/></p>

README_en.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<p align="left">
2-
<a href="https://github.com/ChunelFeng/CGraph"><img src="https://badgen.net/badge/langs/C++/cyan?list=1" alt="languages"></a>
2+
<a href="https://github.com/ChunelFeng/CGraph"><img src="https://badgen.net/badge/langs/C++,Python/cyan?list=1" alt="languages"></a>
33
<a href="https://github.com/ChunelFeng/CGraph"><img src="https://badgen.net/badge/os/MacOS,Linux,Windows/cyan?list=1" alt="os"></a>
44
<a href="https://github.com/ChunelFeng/CGraph/stargazers"><img src="https://badgen.net/github/stars/ChunelFeng/CGraph?color=cyan" alt="stars"></a>
55
<a href="https://github.com/ChunelFeng/CGraph/network/members"><img src="https://badgen.net/github/forks/ChunelFeng/CGraph?color=cyan" alt="forks"></a>
6+
<a href="https://badge.fury.io/py/PyCGraph"><img src="https://badge.fury.io/py/PyCGraph.svg" alt="pypi"></a>
7+
<a href="https://www.codefactor.io/repository/github/chunelfeng/cgraph/overview/main"><img src="https://www.codefactor.io/repository/github/chunelfeng/cgraph/badge/main" alt="CodeFactor" /></a>
68
</p>
79

810
[![awesome-cpp](https://badgen.net/badge/icon/awesome-cpp/purple?icon=awesome&label&color)](https://github.com/fffaraz/awesome-cpp)

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.0.0")
5+
set_version("3.1.0")
66

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

0 commit comments

Comments
 (0)