diff --git a/CHANGELOG.md b/CHANGELOG.md index 126d20613e..39e7e3e3c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +#### 4.0.7 (2020-04-17) + +##### Bug Fixes + +- do not set tooltip position when follow is false ([62f5e279](https://github.com/antvis/g2/commit/62f5e2795794427bbb905758f368adef56ecde8e)) +- **delegation:** mouse leave failed ([d3a30ed2](https://github.com/antvis/g2/commit/d3a30ed21cd95af0db8466cbb1a0662d5179d996)) +- **element:** 修复获取 state style 报错的问题 ([320e22f0](https://github.com/antvis/g2/commit/320e22f0627f1f2a0e1bf3c5c9211d043953fd8c)) + #### 4.0.6 (2020-04-10) ##### New Features diff --git a/package.json b/package.json index df2fd11929..c2266eba13 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g2", - "version": "4.0.6", + "version": "4.0.7", "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 841b2a9abb..a0be8afa48 100644 --- a/src/core.ts +++ b/src/core.ts @@ -1,6 +1,6 @@ /* G2 的一个壳子,不包含 Geometry,由开发者自己定义和引入 */ -export const VERSION = '4.0.6'; +export const VERSION = '4.0.7'; // 核心基类导出 export { Chart, View, Event } from './chart'; // Chart, View 类