From e4f856bdd2f14fe759c0ba7a4bf3a6c3a17d193f Mon Sep 17 00:00:00 2001 From: lxfu1 <954055752@qq.com> Date: Wed, 4 Nov 2020 20:47:31 +0800 Subject: [PATCH] feat: changelog --- CHANGELOG.md | 21 +++++++++++++++++++++ package.json | 4 ++-- src/index.ts | 2 +- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b10099a1a4..1562732c81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +#### 2.0.7 (2020-11-04) + +##### New Features + +* add multi-view plot ([#1843](https://github.com/antvis/g2plot/pull/1843)) ([49785169](https://github.com/antvis/g2plot/commit/4978516975f652609c116d9a97815b4c0185e5a2)) +* radial bar color demo ([#1845](https://github.com/antvis/g2plot/pull/1845)) ([a4340dc6](https://github.com/antvis/g2plot/commit/a4340dc60adddde0382c87cf0c9e7d79e25bc1ec)) +* **column/bar:** migrate connected area interaction ([#1852](https://github.com/antvis/g2plot/pull/1852)) ([a59301f3](https://github.com/antvis/g2plot/commit/a59301f362d62a14d78f22dcfa341d77192d5607)) + +##### Bug Fixes + +* charts issue ([64477934](https://github.com/antvis/g2plot/commit/64477934800302093013b6cc5d7c7ec0a8011a17)) +* update & getDefaultOptions bugs ([#1850](https://github.com/antvis/g2plot/pull/1850)) ([bc4f7c8a](https://github.com/antvis/g2plot/commit/bc4f7c8ade45162b005465e56fad2a6fa1669d00)) +* Scatter regression line and Dual Axes change data ([#1848](https://github.com/antvis/g2plot/pull/1848)) ([654c8e10](https://github.com/antvis/g2plot/commit/654c8e10d1f0f1d7d68f6610bfcd0b28648ce314)) +* type define of legend, axis ([#1842](https://github.com/antvis/g2plot/pull/1842)) ([8f035d87](https://github.com/antvis/g2plot/commit/8f035d87d90d6b7ee5ed008a570233e3d88cf11a)) + +##### Tests + +* coverage for util/path ([#1849](https://github.com/antvis/g2plot/pull/1849)) ([dd11880c](https://github.com/antvis/g2plot/commit/dd11880c69a166a88ebd8f3aec104a3ab42078e8)) +* 提升 bullet 的测试覆盖率以及优化代码 ([#1844](https://github.com/antvis/g2plot/pull/1844)) ([2ae9c9e6](https://github.com/antvis/g2plot/commit/2ae9c9e608cbd00bb8f9d66a40f47126b221ec04)) +* 提升 histogram 的测试覆盖率 ([#1841](https://github.com/antvis/g2plot/pull/1841)) ([0ad37a6b](https://github.com/antvis/g2plot/commit/0ad37a6b13d728af1217a067c29c1699e983f31e)) + #### 2.0.6 (2020-11-02) ##### Documentation Changes diff --git a/package.json b/package.json index e0f9ae1786..019000dda2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g2plot", - "version": "2.0.6", + "version": "2.0.7", "description": "An interactive and responsive charting library", "keywords": [ "chart", @@ -55,7 +55,7 @@ }, "dependencies": { "@antv/event-emitter": "^0.1.2", - "@antv/g2": "^4.1.0-beta.14", + "@antv/g2": "^4.1.0-beta.16", "d3-hierarchy": "^2.0.0", "d3-regression": "^1.3.5", "dayjs": "^1.8.36", diff --git a/src/index.ts b/src/index.ts index d084bb17a7..692b6d1ff0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ -export const version = '2.0.6'; +export const version = '2.0.7'; // G2 自定义能力透出 import * as G2 from '@antv/g2';