From a8c7c7789adf016e47965fbe6861ec927f22d929 Mon Sep 17 00:00:00 2001 From: simaQ Date: Mon, 9 Mar 2020 15:01:55 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E5=8F=91=E5=B8=83=20v4.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- src/core.ts | 2 +- src/index.ts | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d248857359..5ae9d7bae3 100644 --- a/CHANGELOG.md +++ b/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 会成为一个专业的、给用户带来更多可能性的可视化底层引擎,在满足传统型统计图表需求的基础上,能够更好地赋能于(但不限于): diff --git a/package.json b/package.json index 356d1a9f4d..fa385e4db6 100644 --- a/package.json +++ b/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", diff --git a/src/core.ts b/src/core.ts index 7ad956811e..633f941665 100644 --- a/src/core.ts +++ b/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 类 diff --git a/src/index.ts b/src/index.ts index 60ea2cdff9..d55ed8a3e1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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';