parent
f9e823b051
commit
a1ffe2ae90
|
@ -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
|
## 2.2.0-rc.1
|
||||||
|
|
||||||
`2021-06-29`
|
`2021-06-29`
|
||||||
|
|
|
@ -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
|
## 2.2.0-rc.1
|
||||||
|
|
||||||
`2021-06-29`
|
`2021-06-29`
|
||||||
|
|
|
@ -294,7 +294,7 @@ gulp.task(
|
||||||
|
|
||||||
function publish(tagString, done) {
|
function publish(tagString, done) {
|
||||||
let args = ['publish', '--with-antd-tools'];
|
let args = ['publish', '--with-antd-tools'];
|
||||||
// args = args.concat(['--tag', 'next']);
|
args = args.concat(['--tag', 'next']);
|
||||||
if (tagString) {
|
if (tagString) {
|
||||||
args = args.concat(['--tag', tagString]);
|
args = args.concat(['--tag', tagString]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ant-design-vue",
|
"name": "ant-design-vue",
|
||||||
"version": "2.2.0-rc.1",
|
"version": "2.2.0",
|
||||||
"title": "Ant Design Vue",
|
"title": "Ant Design Vue",
|
||||||
"description": "An enterprise-class UI design language and Vue-based implementation",
|
"description": "An enterprise-class UI design language and Vue-based implementation",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
2
v2-doc
2
v2-doc
|
@ -1 +1 @@
|
||||||
Subproject commit b6ab0fec2cfa378bab8dfe6c8ef6b6a8664b970e
|
Subproject commit 89612874e476dc788711cdaedfd037b9497e5e78
|
Loading…
Reference in New Issue