Skip to content

Commit cd45c1d

Browse files
committed
docs: add 0.5.0 changelog
1 parent b9867a1 commit cd45c1d

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

CHANGELOG.en-US.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
---
44

5+
## 0.5.0
6+
7+
`2018-05-08`
8+
9+
- 🌟 `Form`: add Form component
10+
- 💄 `Upload.Dragger`: Modify `name` name to `a-upload-dragger`
11+
- 🐞 `Upload`: Fix `name` prop not working
12+
513
## 0.4.3
614

715
`2018-05-02`

CHANGELOG.zh-CN.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
---
44

5+
## 0.5.0
6+
7+
`2018-05-08`
8+
9+
- 🌟 `Form `新增Form表单组件
10+
- 💄 `Upload.Dragger`: 修改组件name名称为`a-upload-dragger`
11+
- 🐞 `Upload`: 修复Upload name属性失效问题
12+
13+
514
## 0.4.3
615

716
`2018-05-02`

antd-tools/gulpfile.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,11 @@ gulp.task('compile-with-es', (done) => {
252252
})
253253

254254
gulp.task('pub', ['check-git', 'compile'], (done) => {
255-
pub(done)
255+
if (!process.env.GITHUB_TOKEN) {
256+
console.log('no GitHub token found, skip')
257+
} else {
258+
pub(done)
259+
}
256260
})
257261

258262
function reportError () {

0 commit comments

Comments
 (0)