diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index cd765c9d7..10a54fadc 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -10,6 +10,15 @@ --- +## 2.2.0 + +`2021-07-06` + +- ๐ŸŽ‰ Refactor the Button component, remove type="danger", and add the `danger` attribute [#4291](https://github.com/vueComponent/ant-design-vue/issues/4291) +- ๐Ÿž Fix Rate component not updating issue [#4294](https://github.com/vueComponent/ant-design-vue/issues/4294) +- ๐Ÿž Fix Tree replaceFields error report [#4298](https://github.com/vueComponent/ant-design-vue/issues/4298) +- ๐Ÿž Fix Modal missing parentContext type problem [#4305](https://github.com/vueComponent/ant-design-vue/issues/4305) + ## 2.2.0-rc.1 `2021-06-29` @@ -77,7 +86,7 @@ `2021-06-17` -- ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ 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 +- ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ 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 - ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ 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 - ๐ŸŽ‰ Menu diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index e4fd74528..50f17150f 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -10,6 +10,15 @@ --- +## 2.2.0 + +`2021-07-06` + +- ๐ŸŽ‰ ้‡ๆž„ Button ็ป„ไปถ๏ผŒ็งป้™ค type="danger"๏ผŒๆ–ฐๅขž `danger` ๅฑžๆ€ง [#4291](https://github.com/vueComponent/ant-design-vue/issues/4291) +- ๐Ÿž ไฟฎๅค Rate ็ป„ไปถไธๆ›ดๆ–ฐ้—ฎ้ข˜ [#4294](https://github.com/vueComponent/ant-design-vue/issues/4294) +- ๐Ÿž ไฟฎๅค Tree replaceFields ๆŠฅ้”™้—ฎ้ข˜ [#4298](https://github.com/vueComponent/ant-design-vue/issues/4298) +- ๐Ÿž ไฟฎๅค Modal ็ผบๅฐ‘ parentContext ็ฑปๅž‹้—ฎ้ข˜ [#4305](https://github.com/vueComponent/ant-design-vue/issues/4305) + ## 2.2.0-rc.1 `2021-06-29` diff --git a/antd-tools/gulpfile.js b/antd-tools/gulpfile.js index b44d485f7..4c6125ffa 100644 --- a/antd-tools/gulpfile.js +++ b/antd-tools/gulpfile.js @@ -80,7 +80,7 @@ function compileTs(stream) { return stream .pipe(ts(tsConfig)) .js.pipe( - through2.obj(function(file, encoding, next) { + through2.obj(function (file, encoding, next) { // console.log(file.path, file.base); file.path = file.path.replace(/\.[jt]sx$/, '.js'); this.push(file); @@ -146,7 +146,7 @@ function compile(modules) { const less = gulp .src(['components/**/*.less']) .pipe( - through2.obj(function(file, encoding, next) { + through2.obj(function (file, encoding, next) { this.push(file.clone()); if ( file.path.match(/\/style\/index\.less$/) || @@ -294,7 +294,7 @@ gulp.task( function publish(tagString, done) { let args = ['publish', '--with-antd-tools']; - // args = args.concat(['--tag', 'next']); + args = args.concat(['--tag', 'next']); if (tagString) { args = args.concat(['--tag', tagString]); } diff --git a/package.json b/package.json index 92afc93b8..7c8192df1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ant-design-vue", - "version": "2.2.0-rc.1", + "version": "2.2.0", "title": "Ant Design Vue", "description": "An enterprise-class UI design language and Vue-based implementation", "keywords": [ diff --git a/v2-doc b/v2-doc index b6ab0fec2..89612874e 160000 --- a/v2-doc +++ b/v2-doc @@ -1 +1 @@ -Subproject commit b6ab0fec2cfa378bab8dfe6c8ef6b6a8664b970e +Subproject commit 89612874e476dc788711cdaedfd037b9497e5e78