Skip to content

Commit

Permalink
release(1.0.0): release 1.0.0 (#591)
Browse files Browse the repository at this point in the history
  • Loading branch information
fisherspy committed Sep 23, 2019
1 parent 3e63d20 commit d9706cc
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
# [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))

* **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))

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

### Bug Fixes
Expand Down
3 changes: 2 additions & 1 deletion components/date-picker/date-picker.component.ts
Expand Up @@ -596,7 +596,8 @@ export class DatePickerComponent implements OnInit, OnDestroy, AfterViewInit {
if (this.resultArr.length < 3) {
this.resultArr.push('1');
}
result = this.resultArr.slice(0, 3)
result = this.resultArr
.slice(0, 3)
.map(v => {
return this.preZero(parseInt(v, 0));
})
Expand Down
2 changes: 1 addition & 1 deletion components/package.json
@@ -1,6 +1,6 @@
{
"name": "ng-zorro-antd-mobile",
"version": "1.0.0-rc.0",
"version": "1.0.0",
"description": "An enterprise-class mobile UI components based on Ant Design and Angular",
"schematics": "./schematics/collection.json",
"keywords": [
Expand Down
8 changes: 8 additions & 0 deletions docs/changelog.en-US.md
Expand Up @@ -13,6 +13,14 @@ 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.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))

* **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))

## 1.0.0-rc.0(2019-09-16)

### Bug Fixes
Expand Down
8 changes: 8 additions & 0 deletions docs/changelog.zh-CN.md
Expand Up @@ -13,6 +13,14 @@ timeline: true
- 次版本号:每月发布一个带有新特性的向下兼容的版本。
- 主版本号:含有破坏性更新和新特性,不在发布周期内。

## 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))

* **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))

## 1.0.0-rc.0(2019-09-16)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions scripts/site/_site/src/app/app.component.ts
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-beta.0', '1.0.0-beta.2', '1.0.0-rc.0'];
versionMap = {'0.12.x': '0.12.5', '1.0.0-beta.0': '1.0.00', '1.0.0-beta.2': '1.0.07', '1.0.0-rc.0': '1.0.08'};
currentVersion = '1.0.0-rc.0';
versionList = ['0.12.x', '1.0.0'];
versionMap = {'0.12.x': '0.12.5', '1.0.0': '1.0.09'};
currentVersion = '1.0.0';
isHomeURL = true;
isKitchenURL = false;
demoTitle = '';
Expand Down
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-rc.0'
'ng-zorro-antd-mobile': '1.0.0'
},
tags: ['stackblitz', 'sdk']
});
Expand Down

0 comments on commit d9706cc

Please sign in to comment.