Skip to content

Commit 3a74aed

Browse files
iamkunBANKA2017
authored andcommitted
chore: update changelog (ElemeFE#20347)
1 parent 631039a commit 3a74aed

File tree

7 files changed

+88
-4
lines changed

7 files changed

+88
-4
lines changed

CHANGELOG.en-US.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
## Changelog
22

3+
### 2.14.0
4+
5+
*2020-10-29*
6+
7+
#### Breaking changes
8+
9+
- Popconfirm
10+
- Rename event name to `confirm`, `cancel` (#20240 by @hugiron)"
11+
12+
#### Bug fixes
13+
14+
- Progress
15+
- Fix attribute error (#19985 by @Caaalabash)
16+
17+
#### Optimization
18+
19+
- I18n
20+
- Update Russian translation (#19451 by @yangirov)
21+
- Update Khmer translation (#20077 by @Sovai)
22+
- Update Ukrainian translation (#20344 by @MammutAlex)
23+
324
### 2.13.2
425

526
*2020-05-18*

CHANGELOG.es.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
## Changelog
22

3+
### 2.14.0
4+
5+
*2020-10-29*
6+
7+
#### Breaking changes
8+
9+
- Popconfirm
10+
- Rename event name to `confirm`, `cancel` (#20240 by @hugiron)"
11+
12+
#### Bug fixes
13+
14+
- Progress
15+
- Fix attribute error (#19985 by @Caaalabash)
16+
17+
#### Optimization
18+
19+
- I18n
20+
- Update Russian translation (#19451 by @yangirov)
21+
- Update Khmer translation (#20077 by @Sovai)
22+
- Update Ukrainian translation (#20344 by @MammutAlex)
23+
324
### 2.13.2
425

526
*2020-05-18*

CHANGELOG.fr-FR.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
## Changelog
22

3+
### 2.14.0
4+
5+
*2020-10-29*
6+
7+
#### Breaking changes
8+
9+
- Popconfirm
10+
- Rename event name to `confirm`, `cancel` (#20240 by @hugiron)"
11+
12+
#### Bug fixes
13+
14+
- Progress
15+
- Fix attribute error (#19985 by @Caaalabash)
16+
17+
#### Optimization
18+
19+
- I18n
20+
- Update Russian translation (#19451 by @yangirov)
21+
- Update Khmer translation (#20077 by @Sovai)
22+
- Update Ukrainian translation (#20344 by @MammutAlex)
23+
324
### 2.13.2
425

526
*2020-05-18*

CHANGELOG.zh-CN.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
## 更新日志
22

3+
### 2.14.0
4+
5+
*2020-10-29*
6+
7+
#### 非兼容性更新
8+
9+
- Popconfirm
10+
- 事件名称修改为 `confirm`, `cancel` (#20240 by @hugiron)"
11+
12+
#### Bug 修复
13+
14+
- Progress
15+
- 修复参数错误的问题 (#19985 by @Caaalabash)
16+
17+
#### 优化
18+
19+
- I18n
20+
- 更新俄语翻译 (#19451 by @yangirov)
21+
- 更新高棉语翻译 (#20077 by @Sovai)
22+
- 更新乌克兰语翻译 (#20344 by @MammutAlex)
23+
324
### 2.13.2
425

526
*2020-05-18*
@@ -11,7 +32,7 @@
1132
- Image
1233
- 更新错误状态 (#19194 by @lhx6538665)
1334

14-
#### Optimization
35+
#### 优化
1536

1637
- I18n
1738
- 更新 ru-RU popconfirm 翻译 (#19220 by @Opppex)

build/bin/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ var fs = require('fs');
22
var path = require('path');
33
var version = process.env.VERSION || require('../../package.json').version;
44
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' };
5-
if (!content[version]) content[version] = '2.13';
5+
if (!content[version]) content[version] = '2.14';
66
fs.writeFileSync(path.resolve(__dirname, '../../examples/versions.json'), JSON.stringify(content));

build/deploy-ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if [ "$TRAVIS_TAG" ]; then
4040
# build sub folder
4141
echo $TRAVIS_TAG
4242

43-
SUB_FOLDER='2.13'
43+
SUB_FOLDER='2.14'
4444
mkdir $SUB_FOLDER
4545
rm -rf *.js *.css *.map static
4646
rm -rf $SUB_FOLDER/**

build/deploy-faas.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cd temp_web
66
git clone --depth 1 -b gh-pages --single-branch https://github.com/ElemeFE/element.git && cd element
77

88
# build sub folder
9-
SUB_FOLDER='2.13'
9+
SUB_FOLDER='2.14'
1010
mkdir -p $SUB_FOLDER
1111
rm -rf *.js *.css *.map static
1212
rm -rf $SUB_FOLDER/**

0 commit comments

Comments
 (0)