Skip to content

Commit a1ffe2a

Browse files
committed
release 2.2.0
1 parent f9e823b commit a1ffe2a

File tree

5 files changed

+24
-6
lines changed

5 files changed

+24
-6
lines changed

CHANGELOG.en-US.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@
1010

1111
---
1212

13+
## 2.2.0
14+
15+
`2021-07-06`
16+
17+
- 🎉 Refactor the Button component, remove type="danger", and add the `danger` attribute [#4291](https://github.com/vueComponent/ant-design-vue/issues/4291)
18+
- 🐞 Fix Rate component not updating issue [#4294](https://github.com/vueComponent/ant-design-vue/issues/4294)
19+
- 🐞 Fix Tree replaceFields error report [#4298](https://github.com/vueComponent/ant-design-vue/issues/4298)
20+
- 🐞 Fix Modal missing parentContext type problem [#4305](https://github.com/vueComponent/ant-design-vue/issues/4305)
21+
1322
## 2.2.0-rc.1
1423

1524
`2021-06-29`
@@ -77,7 +86,7 @@
7786

7887
`2021-06-17`
7988

80-
- 🔥🔥🔥 Virtual Table independent library released https://www.npmjs.com/package/@surely-vue/table, this component is an independent library, the document example is not yet complete, it is a completely ts-developed component , There are good type hints, there are API documents on npm, those who are in a hurry can explore and use it, here is an online experience example, https://store.antdv.com/pro/preview/list/big- table-list
89+
- 🔥🔥🔥 Virtual Table independent library released https://www.npmjs.com/package/@surely-vue/table, this component is an independent library, the document example is not yet complete, it is a completely ts-developed component , There are good type hints, there are API documents on npm, those who are in a hurry can explore and use it, here is an online experience example, https://store.antdv.com/pro/preview/list/big-table-list
8190
- 🔥🔥🔥 Refactored a large number of components, the source code is more readable, the performance is better, and the ts type is more comprehensive -Refactored components in this version Anchor, Alert, Avatar, Badge, BackTop, Col, Form, Layout, Menu, Space, Spin, Switch, Row, Result, Rate
8291
- 🎉 Menu
8392

CHANGELOG.zh-CN.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@
1010

1111
---
1212

13+
## 2.2.0
14+
15+
`2021-07-06`
16+
17+
- 🎉 重构 Button 组件,移除 type="danger",新增 `danger` 属性 [#4291](https://github.com/vueComponent/ant-design-vue/issues/4291)
18+
- 🐞 修复 Rate 组件不更新问题 [#4294](https://github.com/vueComponent/ant-design-vue/issues/4294)
19+
- 🐞 修复 Tree replaceFields 报错问题 [#4298](https://github.com/vueComponent/ant-design-vue/issues/4298)
20+
- 🐞 修复 Modal 缺少 parentContext 类型问题 [#4305](https://github.com/vueComponent/ant-design-vue/issues/4305)
21+
1322
## 2.2.0-rc.1
1423

1524
`2021-06-29`

antd-tools/gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function compileTs(stream) {
8080
return stream
8181
.pipe(ts(tsConfig))
8282
.js.pipe(
83-
through2.obj(function(file, encoding, next) {
83+
through2.obj(function (file, encoding, next) {
8484
// console.log(file.path, file.base);
8585
file.path = file.path.replace(/\.[jt]sx$/, '.js');
8686
this.push(file);
@@ -146,7 +146,7 @@ function compile(modules) {
146146
const less = gulp
147147
.src(['components/**/*.less'])
148148
.pipe(
149-
through2.obj(function(file, encoding, next) {
149+
through2.obj(function (file, encoding, next) {
150150
this.push(file.clone());
151151
if (
152152
file.path.match(/\/style\/index\.less$/) ||
@@ -294,7 +294,7 @@ gulp.task(
294294

295295
function publish(tagString, done) {
296296
let args = ['publish', '--with-antd-tools'];
297-
// args = args.concat(['--tag', 'next']);
297+
args = args.concat(['--tag', 'next']);
298298
if (tagString) {
299299
args = args.concat(['--tag', tagString]);
300300
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ant-design-vue",
3-
"version": "2.2.0-rc.1",
3+
"version": "2.2.0",
44
"title": "Ant Design Vue",
55
"description": "An enterprise-class UI design language and Vue-based implementation",
66
"keywords": [

0 commit comments

Comments
 (0)