mirror of https://github.com/ElemeFE/element
chore: update changelog (#20347)
parent
bcc36ebc6d
commit
1044d930bd
|
@ -1,5 +1,26 @@
|
|||
## Changelog
|
||||
|
||||
### 2.14.0
|
||||
|
||||
*2020-10-29*
|
||||
|
||||
#### Breaking changes
|
||||
|
||||
- Popconfirm
|
||||
- Rename event name to `confirm`, `cancel` (#20240 by @hugiron)"
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- Progress
|
||||
- Fix attribute error (#19985 by @Caaalabash)
|
||||
|
||||
#### Optimization
|
||||
|
||||
- I18n
|
||||
- Update Russian translation (#19451 by @yangirov)
|
||||
- Update Khmer translation (#20077 by @Sovai)
|
||||
- Update Ukrainian translation (#20344 by @MammutAlex)
|
||||
|
||||
### 2.13.2
|
||||
|
||||
*2020-05-18*
|
||||
|
|
|
@ -1,5 +1,26 @@
|
|||
## Changelog
|
||||
|
||||
### 2.14.0
|
||||
|
||||
*2020-10-29*
|
||||
|
||||
#### Breaking changes
|
||||
|
||||
- Popconfirm
|
||||
- Rename event name to `confirm`, `cancel` (#20240 by @hugiron)"
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- Progress
|
||||
- Fix attribute error (#19985 by @Caaalabash)
|
||||
|
||||
#### Optimization
|
||||
|
||||
- I18n
|
||||
- Update Russian translation (#19451 by @yangirov)
|
||||
- Update Khmer translation (#20077 by @Sovai)
|
||||
- Update Ukrainian translation (#20344 by @MammutAlex)
|
||||
|
||||
### 2.13.2
|
||||
|
||||
*2020-05-18*
|
||||
|
|
|
@ -1,5 +1,26 @@
|
|||
## Changelog
|
||||
|
||||
### 2.14.0
|
||||
|
||||
*2020-10-29*
|
||||
|
||||
#### Breaking changes
|
||||
|
||||
- Popconfirm
|
||||
- Rename event name to `confirm`, `cancel` (#20240 by @hugiron)"
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- Progress
|
||||
- Fix attribute error (#19985 by @Caaalabash)
|
||||
|
||||
#### Optimization
|
||||
|
||||
- I18n
|
||||
- Update Russian translation (#19451 by @yangirov)
|
||||
- Update Khmer translation (#20077 by @Sovai)
|
||||
- Update Ukrainian translation (#20344 by @MammutAlex)
|
||||
|
||||
### 2.13.2
|
||||
|
||||
*2020-05-18*
|
||||
|
|
|
@ -1,5 +1,26 @@
|
|||
## 更新日志
|
||||
|
||||
### 2.14.0
|
||||
|
||||
*2020-10-29*
|
||||
|
||||
#### 非兼容性更新
|
||||
|
||||
- Popconfirm
|
||||
- 事件名称修改为 `confirm`, `cancel` (#20240 by @hugiron)"
|
||||
|
||||
#### Bug 修复
|
||||
|
||||
- Progress
|
||||
- 修复参数错误的问题 (#19985 by @Caaalabash)
|
||||
|
||||
#### 优化
|
||||
|
||||
- I18n
|
||||
- 更新俄语翻译 (#19451 by @yangirov)
|
||||
- 更新高棉语翻译 (#20077 by @Sovai)
|
||||
- 更新乌克兰语翻译 (#20344 by @MammutAlex)
|
||||
|
||||
### 2.13.2
|
||||
|
||||
*2020-05-18*
|
||||
|
@ -11,7 +32,7 @@
|
|||
- Image
|
||||
- 更新错误状态 (#19194 by @lhx6538665)
|
||||
|
||||
#### Optimization
|
||||
#### 优化
|
||||
|
||||
- I18n
|
||||
- 更新 ru-RU popconfirm 翻译 (#19220 by @Opppex)
|
||||
|
|
|
@ -2,5 +2,5 @@ var fs = require('fs');
|
|||
var path = require('path');
|
||||
var version = process.env.VERSION || require('../../package.json').version;
|
||||
var content = { '1.4.13': '1.4', '2.0.11': '2.0', '2.1.0': '2.1', '2.2.2': '2.2', '2.3.9': '2.3', '2.4.11': '2.4', '2.5.4': '2.5', '2.6.3': '2.6', '2.7.2': '2.7', '2.8.2': '2.8', '2.9.2': '2.9', '2.10.1': '2.10', '2.11.1': '2.11', '2.12.0': '2.12' };
|
||||
if (!content[version]) content[version] = '2.13';
|
||||
if (!content[version]) content[version] = '2.14';
|
||||
fs.writeFileSync(path.resolve(__dirname, '../../examples/versions.json'), JSON.stringify(content));
|
||||
|
|
|
@ -40,7 +40,7 @@ if [ "$TRAVIS_TAG" ]; then
|
|||
# build sub folder
|
||||
echo $TRAVIS_TAG
|
||||
|
||||
SUB_FOLDER='2.13'
|
||||
SUB_FOLDER='2.14'
|
||||
mkdir $SUB_FOLDER
|
||||
rm -rf *.js *.css *.map static
|
||||
rm -rf $SUB_FOLDER/**
|
||||
|
|
|
@ -6,7 +6,7 @@ cd temp_web
|
|||
git clone --depth 1 -b gh-pages --single-branch https://github.com/ElemeFE/element.git && cd element
|
||||
|
||||
# build sub folder
|
||||
SUB_FOLDER='2.13'
|
||||
SUB_FOLDER='2.14'
|
||||
mkdir -p $SUB_FOLDER
|
||||
rm -rf *.js *.css *.map static
|
||||
rm -rf $SUB_FOLDER/**
|
||||
|
|
Loading…
Reference in New Issue