Skip to content

Commit

Permalink
release(1.0.1): release 1.0.1 (#593)
Browse files Browse the repository at this point in the history
  • Loading branch information
fisherspy authored Sep 24, 2019
1 parent ee6f4b6 commit 8b6e94d
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 14 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
## [1.0.1](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/compare/1.0.0...1.0.1) (2019-09-24)


### Bug Fixes

* **picker:** remove lodash isEqual reference ([#592](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/592)) ([ee6f4b6](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/ee6f4b6))



# [1.0.0](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/compare/1.0.0-rc.0...1.0.0) (2019-09-23)

### Bug Fixes

* **picker:** fix select bug when data is a function ([#589](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/589)) ([3e63d20](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/3e63d20))
* **date-picker:** fix NAN bug when fast scroll ([#589](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/589)) ([3e63d20](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/3e63d20))

* **picker:** fix select bug when data is a function ([#586](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/586)) ([26a07d7](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/26a07d7))

Expand Down
2 changes: 1 addition & 1 deletion components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-zorro-antd-mobile",
"version": "1.0.0",
"version": "1.0.1",
"description": "An enterprise-class mobile UI components based on Ant Design and Angular",
"schematics": "./schematics/collection.json",
"keywords": [
Expand Down
9 changes: 3 additions & 6 deletions components/picker/picker.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,7 @@ describe('PickerComponent', () => {
{
value: '',
label: '',
children: [
]
children: []
}
]
}
Expand All @@ -188,11 +187,10 @@ describe('PickerComponent', () => {
{
value: '',
label: '',
children: [
]
children: []
}
]
},
}
];
let data3 = null;
let data4 = [];
Expand Down Expand Up @@ -306,7 +304,6 @@ export class TestPickerBasicComponent {
@ViewChild(PickerDirective, { static: false })
picker: PickerDirective;


constructor(private _picker: PickerService) {}

getResult(result) {
Expand Down
8 changes: 7 additions & 1 deletion docs/changelog.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,17 @@ timeline: true
- Monthly release: minor version at the end of every month for new features.
- Major version release is not included in this schedule for breadking change and new features.

## 1.0.1(2019-09-24)

### Bug Fixes

* **picker:** remove lodash isEqual reference ([#592](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/592)) ([ee6f4b6](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/ee6f4b6))

## 1.0.0(2019-09-23)

### Bug Fixes

* **picker:** fix NAN bug when fast scroll ([#589](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/589)) ([3e63d20](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/3e63d20))
* **date-picker:** fix NAN bug when fast scroll ([#589](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/589)) ([3e63d20](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/3e63d20))

* **picker:** fix select bug when data is a function ([#586](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/586)) ([26a07d7](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/26a07d7))

Expand Down
8 changes: 7 additions & 1 deletion docs/changelog.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,17 @@ timeline: true
- 次版本号:每月发布一个带有新特性的向下兼容的版本。
- 主版本号:含有破坏性更新和新特性,不在发布周期内。

## 1.0.1(2019-09-24)

### Bug Fixes

* **picker:** 去除对 lodash isEqual 的引用 ([#592](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/592)) ([ee6f4b6](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/ee6f4b6))

## 1.0.0(2019-09-23)

### Bug Fixes

* **picker:** 修复快速滑动时显示NAN的错误 ([#589](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/589)) ([3e63d20](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/3e63d20))
* **date-picker:** 修复快速滑动时显示NAN的错误 ([#589](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/589)) ([3e63d20](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/3e63d20))

* **picker:** 修复 data input 为一个函数时引发的选择错误 ([#586](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/pull/586)) ([26a07d7](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/26a07d7))

Expand Down
6 changes: 3 additions & 3 deletions scripts/site/_site/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export class AppComponent implements OnInit, AfterViewInit {
docsearch = null;
kitchenUrl = window.location.origin + '/#/kitchen-sink?lang=zh-CN';
language = 'zh';
versionList = ['0.12.x', '1.0.0'];
versionMap = {'0.12.x': '0.12.5', '1.0.0': '1.0.09'};
currentVersion = '1.0.0';
versionList = ['0.12.x', '1.0.1'];
versionMap = {'0.12.x': '0.12.5', '1.0.1': '1.0.10'};
currentVersion = '1.0.1';
isHomeURL = true;
isKitchenURL = false;
demoTitle = '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ export class AppModule { }
'core-js': '^2.5.4',
'rxjs': '^6.3.3',
'zone.js': '^0.9.0',
'ng-zorro-antd-mobile': '1.0.0'
'ng-zorro-antd-mobile': '1.0.1'
},
tags: ['stackblitz', 'sdk']
});
Expand Down

0 comments on commit 8b6e94d

Please sign in to comment.