فهرست منبع

chore: update changelog (#20347)

iamkun 4 سال پیش
والد
کامیت
1044d930bd
7فایلهای تغییر یافته به همراه88 افزوده شده و 4 حذف شده
  1. 21 0
      CHANGELOG.en-US.md
  2. 21 0
      CHANGELOG.es.md
  3. 21 0
      CHANGELOG.fr-FR.md
  4. 22 1
      CHANGELOG.zh-CN.md
  5. 1 1
      build/bin/version.js
  6. 1 1
      build/deploy-ci.sh
  7. 1 1
      build/deploy-faas.sh

+ 21 - 0
CHANGELOG.en-US.md

@@ -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*

+ 21 - 0
CHANGELOG.es.md

@@ -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*

+ 21 - 0
CHANGELOG.fr-FR.md

@@ -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*

+ 22 - 1
CHANGELOG.zh-CN.md

@@ -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)

+ 1 - 1
build/bin/version.js

@@ -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));

+ 1 - 1
build/deploy-ci.sh

@@ -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/**

+ 1 - 1
build/deploy-faas.sh

@@ -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/**