Skip to content

Commit

Permalink
chore: 4.1.18 (#3465)
Browse files Browse the repository at this point in the history
* chore: 4.1.18

* chore: update ci.yml & 修复单测失败问题
  • Loading branch information
visiky authored Jun 8, 2021
1 parent ccb7f22 commit 64c213d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
node-version: 12.x
- name: npm install
run: |
npm install
yarn install
- name: test
run: |
npm run coverage
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
#### 4.1.18 (2021-06-07)

##### New Features

- **legend:** 图例支持回调设置 marker ([#3448](https://github.com/antvis/g2/pull/3448)) ([ed3047e7](https://github.com/antvis/g2/commit/ed3047e7823470de135a24ad854597316af8a7cc))

##### Bug Fixes

- 修复 view 上没有正确的 scale 时,绘制 annotation 出错 ([#3450](https://github.com/antvis/g2/pull/3450)) ([d0af4095](https://github.com/antvis/g2/commit/d0af40954a574948e34d6132f852ffb4e9bc0bd0))

##### Other Changes

- 修复 view.changeData 在重新渲染的时候 报 toFront 为 underfind 的错误 ([#3438](https://github.com/antvis/g2/pull/3438)) ([76e08d06](https://github.com/antvis/g2/commit/76e08d066a932c402e0acc57c22d8aed4bc9b3b4))

#### 4.1.17 (2021-05-26)

##### Chores
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g2",
"version": "4.1.17",
"version": "4.1.18",
"description": "the Grammar of Graphics in Javascript",
"main": "lib/index.js",
"module": "esm/index.js",
Expand Down Expand Up @@ -150,6 +150,7 @@
"license": "MIT",
"resolutions": {
"monaco-editor": "0.21.3",
"@babel/plugin-transform-spread": "7.12.1"
"@babel/plugin-transform-spread": "7.12.1",
"d3-array": "2.12.1"
}
}
2 changes: 1 addition & 1 deletion src/core.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* G2 的一个壳子,不包含 Geometry,由开发者自己定义和引入 */

export const VERSION = '4.1.17';
export const VERSION = '4.1.18';

// 核心基类导出
export { Chart, View, Event } from './chart'; // Chart, View 类
Expand Down

0 comments on commit 64c213d

Please sign in to comment.