Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update version #5908

Merged
merged 1 commit into from
Jun 20, 2024
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 packages/g6/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g6",
"version": "5.0.1",
"version": "5.0.2",
"description": "A Graph Visualization Framework in JavaScript",
"keywords": [
"antv",
Expand Down
2 changes: 1 addition & 1 deletion packages/g6/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import './preset';

export * from './exports';

export const version = '5.0.1';
export const version = '5.0.2';
export const iconfont = {
css: '//at.alicdn.com/t/a/font_470089_8hnbbf8n4u8.css',
js: '//at.alicdn.com/t/a/font_470089_8hnbbf8n4u8.js',
Expand Down
2 changes: 1 addition & 1 deletion packages/g6/src/runtime/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ export class Graph extends EventEmitter {
* <en/> Add child node data to the tree node
* @param parentId - <zh/> 父节点 ID | <en/> parent node ID
* @param childrenData - <zh/> 子节点数据 | <en/> child node data
* @description
* @remarks
* <zh/> 为组合添加子节点使用 addNodeData / addComboData 方法
*
* <en/> Use addNodeData / addComboData method to add child nodes to the combo
Expand Down
Loading