Skip to content

Commit 60d9185

Browse files
committed
feat: add change log
1 parent 188605c commit 60d9185

File tree

8 files changed

+88
-5
lines changed

8 files changed

+88
-5
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.15.0
4+
5+
*2021-01-15*
6+
7+
#### Bug fixes
8+
9+
- Select
10+
- Fix placeholder i18n bug (#17644 by @nzh63)
11+
- Popconfirm
12+
- Popconfirm i18n bug by @iamkun)
13+
- Drawer
14+
- Fix focus bug (#20626 by @cs1707)
15+
- Image
16+
- Preview optimization (#20652 by @cs1707)
17+
18+
#### Optimization
19+
20+
- Doc
21+
- Fix typo in french translation of datetime-picker.md (#20543 by @lonk)
22+
- Add format attribute description to the progress component (#20641 by @cs1707)
23+
324
### 2.14.1
425

526
*2020-11-11*

CHANGELOG.es.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
11
## Changelog
2+
### 2.15.0
3+
4+
*2021-01-15*
5+
6+
#### Bug fixes
7+
8+
- Select
9+
- Fix placeholder i18n bug (#17644 by @nzh63)
10+
- Popconfirm
11+
- Popconfirm i18n bug by @iamkun
12+
- Drawer
13+
- Fix focus bug (#20626 by @cs1707)
14+
- Image
15+
- Preview optimization (#20652 by @cs1707)
16+
17+
#### Optimization
18+
19+
- Doc
20+
- Fix typo in french translation of datetime-picker.md (#20543 by @lonk)
21+
- Add format attribute description to the progress component (#20641 by @cs1707)
222

323
### 2.14.1
424

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.15.0
4+
5+
*2021-01-15*
6+
7+
#### Bug fixes
8+
9+
- Select
10+
- Fix placeholder i18n bug (#17644 by @nzh63)
11+
- Popconfirm
12+
- Popconfirm i18n bug by @iamkun
13+
- Drawer
14+
- Fix focus bug (#20626 by @cs1707)
15+
- Image
16+
- Preview optimization (#20652 by @cs1707)
17+
18+
#### Optimization
19+
20+
- Doc
21+
- Fix typo in french translation of datetime-picker.md (#20543 by @lonk)
22+
- Add format attribute description to the progress component (#20641 by @cs1707)
23+
324
### 2.14.1
425

526
*2020-11-11*

CHANGELOG.zh-CN.md

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

3+
### 2.15.0
4+
5+
*2021-01-15*
6+
7+
#### Bug 修复
8+
9+
- Select
10+
- 修复 placeholder 国际化 bug (#17644 by @nzh63)
11+
- Popconfirm
12+
- 修复 Popconfirm 国际化 bug by @iamkun
13+
- Drawer
14+
- 修复 focus bug (#20626 by @cs1707)
15+
- Image
16+
- 图片预览优化 (#20652 by @cs1707)
17+
18+
#### 优化
19+
20+
- Doc
21+
- 更新法语文档 datetime-picker.md (#20543 by @lonk)
22+
- 更新 Progress 组件文档 (#20641 by @cs1707)
23+
324
### 2.14.1
425

526
*2020-11-11*

build/bin/version.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var fs = require('fs');
22
var path = require('path');
33
var version = process.env.VERSION || require('../../package.json').version;
4-
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', '2.13.2': '2.13' };
5-
if (!content[version]) content[version] = '2.14';
4+
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', '2.13.2': '2.13', '2.14.1': '2.14' };
5+
if (!content[version]) content[version] = '2.15';
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.14'
43+
SUB_FOLDER='2.15'
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.14'
9+
SUB_FOLDER='2.15'
1010
mkdir -p $SUB_FOLDER
1111
rm -rf *.js *.css *.map static
1212
rm -rf $SUB_FOLDER/**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"dist": "npm run clean && npm run build:file && npm run lint && webpack --config build/webpack.conf.js && webpack --config build/webpack.common.js && webpack --config build/webpack.component.js && npm run build:utils && npm run build:umd && npm run build:theme",
2626
"i18n": "node build/bin/i18n.js",
2727
"lint": "eslint src/**/* test/**/* packages/**/* build/**/* --quiet",
28-
"pub": "npm run bootstrap && sh build/git-release.sh && sh build/release.sh && node build/bin/gen-indices.js && sh build/deploy-faas.sh",
28+
"pub": "npm run bootstrap && sh build/git-release.sh && sh build/release.sh && node build/bin/gen-indices.js",
2929
"test": "npm run lint && npm run build:theme && cross-env CI_ENV=/dev/ BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
3030
"test:watch": "npm run build:theme && cross-env BABEL_ENV=test karma start test/unit/karma.conf.js"
3131
},

0 commit comments

Comments
 (0)