Skip to content

Commit

Permalink
Merge pull request #2136 from antvis/release-v4.0.1
Browse files Browse the repository at this point in the history
chore: 发布 v4.0.1
  • Loading branch information
dxq613 committed Mar 9, 2020
2 parents 33703ec + a8c7c77 commit 83f9ad0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,13 @@
#### 4.0.1 (2020-03-09)

##### Chores

- 更新网站 H5 模板 ([624e5023](https://github.com/antvis/g2/commit/624e5023e67a98a06018fefc6a38d2fef1847b1d))

##### New Features

- **action:** 添加新的 Action 类: [ElementLinkByColor](https://github.com/antvis/G2/blob/master/src/interaction/action/element/link-by-color.ts) ([67c66d4e](https://github.com/antvis/g2/commit/67c66d4ede5fd848140b28b3fddeb3f6d3974e36))

## 4.0.0 正式发布 (2020-03-01)

作为图形语法(the Grammar of Graphics)的前端实现,G2 已经经历多个版本的迭代。本次 G2 4.0 是一个新的起点,我们对底层架构做了大量的重构工作,G2 会更加关注于:**图形语法,交互语法**以及**可视化组件体系**的建设。我们希望 G2 4.0 会成为一个专业的、给用户带来更多可能性的可视化底层引擎,在满足传统型统计图表需求的基础上,能够更好地赋能于(但不限于):
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@antv/g2",
"version": "4.0.0",
"version": "4.0.1",
"description": "the Grammar of Graphics in Javascript",
"main": "lib/index.js",
"module": "esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core.ts
@@ -1,6 +1,6 @@
/* G2 的一个壳子,不包含 Geometry,由开发者自己定义和引入 */

export const VERSION = '4.0.0';
export const VERSION = '4.0.1';

// 核心基类导出
export { Chart, View, Event } from './chart'; // Chart, View 类
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Expand Up @@ -149,9 +149,9 @@ import SiblingTooltip from './interaction/action/component/sibling-tooltp';
import TooltipAction from './interaction/action/component/tooltip';

import ElmentActive from './interaction/action/element/active';
import ElementLinkByColor from './interaction/action/element/link-by-color';
import ElmentRangeActive from './interaction/action/element/range-active';
import ElmentSingleActive from './interaction/action/element/single-active';
import ElementLinkByColor from './interaction/action/element/link-by-color';

import ElmentHighlight from './interaction/action/element/highlight';
import ElmentHighlightByColor from './interaction/action/element/highlight-by-color';
Expand Down

0 comments on commit 83f9ad0

Please sign in to comment.