Skip to content

Commit 93a06cf

Browse files
authored
release(7.0.3): release 7.0.3 (#3087)
1 parent fc72d7d commit 93a06cf

7 files changed

Lines changed: 42 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## [7.0.3](https://github.com/NG-ZORRO/ng-zorro-antd/compare/7.0.2...7.0.3) (2019-03-14)
2+
3+
4+
### Bug Fixes
5+
6+
* **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)
7+
8+
### Build
9+
10+
* **build:** add strictNullCheck config ([#2126](https://github.com/NG-ZORRO/ng-zorro-antd/pull/2977))
11+
* **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))
12+
13+
114
## [7.0.2](https://github.com/NG-ZORRO/ng-zorro-antd/compare/7.0.1...7.0.2) (2019-03-11)
215

316

components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-zorro-antd",
3-
"version": "7.0.2",
3+
"version": "7.0.3",
44
"license": "MIT",
55
"description": "An enterprise-class UI components based on Ant Design and Angular",
66
"schematics": "./schematics/collection.json",

components/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import { Version } from '@angular/core';
22

3-
export const VERSION = new Version('7.0.2');
3+
export const VERSION = new Version('7.0.3');

docs/changelog.en-US.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@ timeline: true
1313
* Major version release is not included in this schedule for breaking change and new features.
1414

1515
---
16+
## 7.0.3
17+
`2019-03-14`
18+
19+
### Bug Fixes
20+
21+
* **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)
22+
23+
### Build
24+
25+
* **build:** add strictNullCheck config ([#2126](https://github.com/NG-ZORRO/ng-zorro-antd/pull/2977))
26+
* **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))
27+
1628
## 7.0.2
1729
`2019-03-11`
1830

docs/changelog.zh-CN.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@ timeline: true
1313
* 主版本号:含有破坏性更新和新特性,不在发布周期内。
1414

1515
---
16+
## 7.0.3
17+
`2019-03-14`
18+
19+
### Bug Fixes
20+
21+
* **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)
22+
23+
### Build
24+
25+
* **build:** 增加 strictNullCheck 等更严格的 ts 校验措施 ([#2126](https://github.com/NG-ZORRO/ng-zorro-antd/pull/2977))
26+
* **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))
27+
1628
## 7.0.2
1729
`2019-03-11`
1830

scripts/site/_site/doc/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class AppComponent implements OnInit, AfterViewInit {
5252
'0.7.x',
5353
'1.8.x'
5454
];
55-
currentVersion = '7.0.2';
55+
currentVersion = '7.0.3';
5656

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

scripts/site/_site/doc/app/share/nz-codebox/nz-codebox.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,11 +399,11 @@ export class AppModule { }
399399
'@angular/common' : '^7.0.0',
400400
'@angular/router' : '^7.0.0',
401401
'@angular/animations' : '^7.0.0',
402-
'@ant-design/icons-angular' : '^2.0.1',
402+
'@ant-design/icons-angular' : '^2.0.2',
403403
'date-fns' : '^1.29.0',
404404
'tslib' : '^1.9.3',
405405
'typescript' : '~3.1.1',
406-
'ng-zorro-antd' : '^7.0.2'
406+
'ng-zorro-antd' : '^7.0.3'
407407
},
408408
tags : [ 'stackblitz', 'sdk' ]
409409
});

0 commit comments

Comments
 (0)