Skip to content

Commit

Permalink
release(7.0.3): release 7.0.3 (#3087)
Browse files Browse the repository at this point in the history
  • Loading branch information
vthinkxie authored Mar 14, 2019
1 parent fc72d7d commit 93a06cf
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## [7.0.3](https://github.com/NG-ZORRO/ng-zorro-antd/compare/7.0.2...7.0.3) (2019-03-14)


### Bug Fixes

* **select:** fix select init touched state error when disabled ([#3084](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3084)) ([ba9d454](https://github.com/NG-ZORRO/ng-zorro-antd/commit/ba9d454)), closes [#3059](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3059)

### Build

* **build:** add strictNullCheck config ([#2126](https://github.com/NG-ZORRO/ng-zorro-antd/pull/2977))
* **build:** upgrade icon to 2.0.2 ([#3085](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3085)) ([fc72d7d](https://github.com/NG-ZORRO/ng-zorro-antd/commit/fc72d7d))


## [7.0.2](https://github.com/NG-ZORRO/ng-zorro-antd/compare/7.0.1...7.0.2) (2019-03-11)


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",
"version": "7.0.2",
"version": "7.0.3",
"license": "MIT",
"description": "An enterprise-class UI components based on Ant Design and Angular",
"schematics": "./schematics/collection.json",
Expand Down
2 changes: 1 addition & 1 deletion components/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { Version } from '@angular/core';

export const VERSION = new Version('7.0.2');
export const VERSION = new Version('7.0.3');
12 changes: 12 additions & 0 deletions docs/changelog.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ timeline: true
* Major version release is not included in this schedule for breaking change and new features.

---
## 7.0.3
`2019-03-14`

### Bug Fixes

* **select:** fix select init touched state error when disabled ([#3084](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3084)) ([ba9d454](https://github.com/NG-ZORRO/ng-zorro-antd/commit/ba9d454)), closes [#3059](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3059)

### Build

* **build:** add strictNullCheck config ([#2126](https://github.com/NG-ZORRO/ng-zorro-antd/pull/2977))
* **build:** upgrade icon to 2.0.2 ([#3085](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3085)) ([fc72d7d](https://github.com/NG-ZORRO/ng-zorro-antd/commit/fc72d7d))

## 7.0.2
`2019-03-11`

Expand Down
12 changes: 12 additions & 0 deletions docs/changelog.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ timeline: true
* 主版本号:含有破坏性更新和新特性,不在发布周期内。

---
## 7.0.3
`2019-03-14`

### Bug Fixes

* **select:** 修复 disabled 状态时 touched 初始状态错误的问题 ([#3084](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3084)) ([ba9d454](https://github.com/NG-ZORRO/ng-zorro-antd/commit/ba9d454)), closes [#3059](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3059)

### Build

* **build:** 增加 strictNullCheck 等更严格的 ts 校验措施 ([#2126](https://github.com/NG-ZORRO/ng-zorro-antd/pull/2977))
* **build:** icon 依赖包升级至 2.0.2 ([#3085](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3085)) ([fc72d7d](https://github.com/NG-ZORRO/ng-zorro-antd/commit/fc72d7d))

## 7.0.2
`2019-03-11`

Expand Down
2 changes: 1 addition & 1 deletion scripts/site/_site/doc/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class AppComponent implements OnInit, AfterViewInit {
'0.7.x',
'1.8.x'
];
currentVersion = '7.0.2';
currentVersion = '7.0.3';

@ViewChild('searchInput') searchInput: ElementRef<HTMLInputElement>;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -399,11 +399,11 @@ export class AppModule { }
'@angular/common' : '^7.0.0',
'@angular/router' : '^7.0.0',
'@angular/animations' : '^7.0.0',
'@ant-design/icons-angular' : '^2.0.1',
'@ant-design/icons-angular' : '^2.0.2',
'date-fns' : '^1.29.0',
'tslib' : '^1.9.3',
'typescript' : '~3.1.1',
'ng-zorro-antd' : '^7.0.2'
'ng-zorro-antd' : '^7.0.3'
},
tags : [ 'stackblitz', 'sdk' ]
});
Expand Down

0 comments on commit 93a06cf

Please sign in to comment.