chore: update version numbers

This commit is contained in:
Yanyan-Wang 2023-09-10 23:27:15 +08:00
parent 5d53c6fac6
commit fae55e69f2
9 changed files with 21 additions and 16 deletions

View File

@ -1,5 +1,10 @@
# ChangeLog
### 4.8.22
- fix: read and clone large data for tree graph;
- fix: download images with correct file name;
### 4.8.21
- feat: layout supports relayoutAtChangeData config to disable relayout while changeData of graph is called;

View File

@ -1,6 +1,6 @@
{
"name": "@antv/g6-core",
"version": "0.8.21",
"version": "0.8.22",
"description": "A Graph Visualization Framework in JavaScript",
"keywords": [
"antv",

View File

@ -64,7 +64,7 @@ const colorSet = {
};
export default {
version: '0.8.21',
version: '0.8.22',
rootContainerClassName: 'root-container',
nodeContainerClassName: 'node-container',
edgeContainerClassName: 'edge-container',

View File

@ -1,6 +1,6 @@
{
"name": "@antv/g6-element",
"version": "0.8.21",
"version": "0.8.22",
"description": "A Graph Visualization Framework in JavaScript",
"keywords": [
"antv",
@ -61,7 +61,7 @@
},
"dependencies": {
"@antv/g-base": "^0.5.1",
"@antv/g6-core": "0.8.21",
"@antv/g6-core": "0.8.22",
"@antv/util": "~2.0.5"
},
"devDependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@antv/g6",
"version": "4.8.21",
"version": "4.8.22",
"description": "A Graph Visualization Framework in JavaScript",
"keywords": [
"antv",
@ -66,7 +66,7 @@
]
},
"dependencies": {
"@antv/g6-pc": "0.8.21"
"@antv/g6-pc": "0.8.22"
},
"devDependencies": {
"@babel/core": "^7.7.7",

View File

@ -1,7 +1,7 @@
import G6 from '@antv/g6-pc';
G6.version = '4.8.21';
G6.version = '4.8.22';
export * from '@antv/g6-pc';
export default G6;
export const version = '4.8.21';
export const version = '4.8.22';

View File

@ -1,6 +1,6 @@
{
"name": "@antv/g6-pc",
"version": "0.8.21",
"version": "0.8.22",
"description": "A Graph Visualization Framework in JavaScript",
"keywords": [
"antv",
@ -75,9 +75,9 @@
"@antv/g-canvas": "^0.5.2",
"@antv/g-math": "^0.1.1",
"@antv/g-svg": "^0.5.1",
"@antv/g6-core": "0.8.21",
"@antv/g6-element": "0.8.21",
"@antv/g6-plugin": "0.8.21",
"@antv/g6-core": "^0.8.22",
"@antv/g6-element": "0.8.22",
"@antv/g6-plugin": "0.8.22",
"@antv/hierarchy": "^0.6.10",
"@antv/layout": "^0.3.0",
"@antv/matrix-util": "^3.1.0-beta.3",

View File

@ -7,7 +7,7 @@ const textColor = 'rgb(0, 0, 0)';
const colorSet = getColorsWithSubjectColor(subjectColor, backColor);
export default {
version: '0.8.21',
version: '0.8.22',
rootContainerClassName: 'root-container',
nodeContainerClassName: 'node-container',
edgeContainerClassName: 'edge-container',

View File

@ -1,6 +1,6 @@
{
"name": "@antv/g6-plugin",
"version": "0.8.21",
"version": "0.8.22",
"description": "G6 Plugin",
"main": "lib/index.js",
"module": "es/index.js",
@ -22,8 +22,8 @@
"@antv/g-base": "^0.5.1",
"@antv/g-canvas": "^0.5.2",
"@antv/g-svg": "^0.5.2",
"@antv/g6-core": "0.8.21",
"@antv/g6-element": "0.8.21",
"@antv/g6-core": "0.8.22",
"@antv/g6-element": "0.8.22",
"@antv/matrix-util": "^3.1.0-beta.3",
"@antv/scale": "^0.3.4",
"@antv/util": "^2.0.9",