diff --git a/docs/examples-docs/changelog.md b/docs/examples-docs/changelog.md index 248c1a4a8..b4270862c 100644 --- a/docs/examples-docs/changelog.md +++ b/docs/examples-docs/changelog.md @@ -1,5 +1,28 @@ ## 更新日志 +## [v0.9.0](https://github.com/youzan/vant/tree/v0.9.0) (2017-09-07) +[Full Changelog](https://github.com/youzan/vant/compare/v0.8.9...v0.9.0) + +**非兼容更新和新特性:** + +- add PullRefresh component [\#117](https://github.com/youzan/vant/pull/117) ([chenjiahan](https://github.com/chenjiahan)) +- Build: analyzes component dependencies when build style entries [\#115](https://github.com/youzan/vant/pull/115) ([chenjiahan](https://github.com/chenjiahan)) +- Toast: use flex layout, support loading with text, improve performance [\#114](https://github.com/youzan/vant/pull/114) ([chenjiahan](https://github.com/chenjiahan)) +- Card: support num and price props [\#112](https://github.com/youzan/vant/pull/112) ([chenjiahan](https://github.com/chenjiahan)) +- vant-css: use hairline classes instead of mixins [\#110](https://github.com/youzan/vant/pull/110) ([chenjiahan](https://github.com/chenjiahan)) +- update `popup` and `quickstart` readme [\#109](https://github.com/youzan/vant/pull/109) ([cookfront](https://github.com/cookfront)) +- add OrderCoupon component [\#108](https://github.com/youzan/vant/pull/108) ([chenjiahan](https://github.com/chenjiahan)) +- Doc: improve site load speed [\#107](https://github.com/youzan/vant/pull/107) ([chenjiahan](https://github.com/chenjiahan)) + +**修复:** + +- Fix: swipe tabs animation time and timing function [\#111](https://github.com/youzan/vant/pull/111) ([cookfront](https://github.com/cookfront)) +- hide indicators when one swipe page [\#106](https://github.com/youzan/vant/pull/106) ([Raistlin916](https://github.com/Raistlin916)) + +**合并的 Pull Request (可能有不兼容改动):** + +- 新增:Area(省市区选择)组件 [\#113](https://github.com/youzan/vant/pull/113) ([cookfront](https://github.com/cookfront)) + ## [v0.8.9](https://github.com/youzan/vant/tree/v0.8.9) (2017-09-01) [Full Changelog](https://github.com/youzan/vant/compare/v0.8.8...v0.8.9) diff --git a/package.json b/package.json index 2c6a43661..06ba811fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vant", - "version": "0.9.0", + "version": "0.9.1", "description": "有赞vue wap组件库", "main": "lib/vant.js", "style": "lib/vant-css/index.css", diff --git a/packages/index.js b/packages/index.js index 9775bf981..2129658e0 100644 --- a/packages/index.js +++ b/packages/index.js @@ -49,7 +49,7 @@ import TreeSelect from './tree-select'; import Uploader from './uploader'; import Waterfall from './waterfall'; -const version = '0.9.0'; +const version = '0.9.1'; const components = [ Actionsheet, Area, diff --git a/packages/vant-css/package.json b/packages/vant-css/package.json index d5f172e9e..0aabadf9a 100644 --- a/packages/vant-css/package.json +++ b/packages/vant-css/package.json @@ -1,6 +1,6 @@ { "name": "vant-css", - "version": "0.9.0", + "version": "0.9.1", "description": "vant css.", "main": "lib/index.css", "style": "lib/index.css",