Browse Source

release 2.13.13 (#9590)

pull/9633/head 2.13.13
愚指导 7 years ago
committed by GitHub
parent
commit
97d3422043
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      CHANGELOG.en-US.md
  2. 7
      CHANGELOG.zh-CN.md
  3. 4
      package.json

7
CHANGELOG.en-US.md

@ -17,6 +17,13 @@ If you want to read change logs before `2.0.0`, please visit [GitHub](https://gi
---
## 2.13.13
`2018-03-09`
- 🐞 Fix `Upload` file list update logic when beforeUpload return false. [626ebf2](https://github.com/ant-design/ant-design/commit/ef6d7a5d9070c0b82deed837a7ebce7de9bc18aa)
## 2.13.12
`2018-02-26`

7
CHANGELOG.zh-CN.md

@ -17,6 +17,13 @@ timeline: true
---
## 2.13.13
`2018-03-09`
- 🐞 修复 `Upload` 组件当 `beforeUpload` 返回 `false` 时文件列表的更新逻辑。 [626ebf2](https://github.com/ant-design/ant-design/commit/ef6d7a5d9070c0b82deed837a7ebce7de9bc18aa)
## 2.13.12
`2018-02-26`

4
package.json

@ -1,6 +1,6 @@
{
"name": "antd",
"version": "2.13.12",
"version": "2.13.13",
"title": "Ant Design",
"description": "An enterprise-class UI design language and React-based implementation",
"homepage": "http://ant.design/",
@ -176,7 +176,7 @@
"start:preact": "node ./scripts/generateColorLess.js && cross-env NODE_ENV=development REACT_ENV=preact bisheng start -c ./site/bisheng.config.js --no-livereload",
"site": "cross-env NODE_ENV=production bisheng build --ssr -c ./site/bisheng.config.js",
"deploy": "antd-tools run clean && npm run site && node ./scripts/generateColorLess.js && bisheng gh-pages --push-only",
"pub": "antd-tools run pub",
"pub": "antd-tools run pub --npm-tag=2.x",
"prepublish": "antd-tools run guard",
"pre-publish": "npm run test-all && node ./scripts/prepub",
"authors": "git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt",

Loading…
Cancel
Save