diff --git a/CHANGELOG.md b/CHANGELOG.md index 58a21be6d7..126d20613e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +#### 4.0.6 (2020-04-10) + +##### New Features + +- view 上添加手势事件支持 ([e4f74a22](https://github.com/antvis/g2/commit/e4f74a224fee34afa29cb272ceef854f2d3bce41)) + +##### Bug Fixes + +- **geometry:** geometry.clear() 以及 destroy() 时要清空、销毁内部变量 ([c89ff974](https://github.com/antvis/g2/commit/c89ff97479a7a1e3dd3014e5440aad1d52f4311e)) +- **#2272:** 当映射数据中不存在 x 和 y 时,不绘制 label ([df60733e](https://github.com/antvis/g2/commit/df60733e206d8d83bfd46b485df32a6ba0e80bd4)) + +##### Performance Improvements + +- 性能优化,详见 [MR](https://github.com/antvis/G2/pull/2221) + +##### Documentation Changes + +- 添加 Gestrue 手势使用文档 ([2c459853](https://github.com/antvis/g2/commit/2c459853885b4f4e23c0d33c6542d5b83b527df8)) + #### 4.0.5 (2020-04-08) ##### Bug Fixes diff --git a/package.json b/package.json index 881c5fd21a..b9ea4bc3a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g2", - "version": "4.0.5", + "version": "4.0.6", "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 37b85aa5ee..841b2a9abb 100644 --- a/src/core.ts +++ b/src/core.ts @@ -1,6 +1,6 @@ /* G2 的一个壳子,不包含 Geometry,由开发者自己定义和引入 */ -export const VERSION = '4.0.5'; +export const VERSION = '4.0.6'; // 核心基类导出 export { Chart, View, Event } from './chart'; // Chart, View 类