[changelog] 0.3.5

This commit is contained in:
陈嘉涵 2018-09-29 16:13:45 +08:00
parent c1f962b17b
commit aa7a6f59ae
5 changed files with 24 additions and 1 deletions

View File

@ -1,5 +1,20 @@
## 更新日志
### [0.3.5](https://github.com/youzan/vant-weapp/tree/v0.3.5)
`2018-09-29`
**Improvements**
- 新增 Checkbox 复选框组件 [\#666](https://github.com/youzan/vant-weapp/pull/666)
- 优化样式代码,减少体积 [\#660](https://github.com/youzan/vant-weapp/pull/660)
**Bug Fixes**
- 修复 Area 数据为空时报错的问题 [\#661](https://github.com/youzan/vant-weapp/pull/661)
- 修复 Tab active 属性默认值错误的问题 [\#665](https://github.com/youzan/vant-weapp/pull/665)
### [0.3.4](https://github.com/youzan/vant-weapp/tree/v0.3.4)
`2018-09-27`

View File

@ -11,7 +11,7 @@
"release": "sh build/release.sh",
"build:lib": "rm -rf dist && NODE_ENV=production node build/compiler.js",
"build:site": "rm -rf docs/dist && cross-env NODE_ENV=production webpack --config build/webpack.doc.prd.js && gh-pages -d docs/dist",
"build:changelog": "vant-doc changelog --tag v0.3.0 ./dist/changelog.md"
"build:changelog": "vant-doc changelog --tag v0.3.0 ./docs/dist/changelog.md"
},
"files": [
"dist"

View File

@ -135,3 +135,4 @@
| 版本 | 类型 | 内容 |
|-----------|-----------|-----------|
| 0.3.3 | feature | 新增组件 |
| 0.3.5 | bugfix | 修复数据为空时报错的问题 |

View File

@ -188,3 +188,9 @@ Page({
| 方法名 | 参数 | 返回值 | 介绍 |
|-----------|-----------|-----------|-------------|
| toggle | - | - | 切换选中状态 |
### 更新日志
| 版本 | 类型 | 内容 |
|-----------|-----------|-----------|
| 0.3.5 | feature | 新增组件 |

View File

@ -159,3 +159,4 @@ Page({
| 0.3.2 | bugfix | 修复 color 属性会改变未激活标签的颜色的问题 |
| 0.3.3 | feature | 新增 border 属性 |
| 0.3.3 | feature | 支持传入外部样式类 |
| 0.3.5 | bugfix | 修复 active 属性默认值错误的问题 |