Skip to content

Commit

Permalink
release(7.0.0-rc.3): release 7.0.0-rc.3 (#2692)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wendell authored and vthinkxie committed Dec 26, 2018
1 parent 50d4fc4 commit d0ee5ad
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 21 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# [7.0.0-rc.2](https://github.com/NG-ZORRO/ng-zorro-antd/compare/7.0.0-rc.1...7.0.0-rc.2) (2018-12-24)
# [7.0.0-rc.3](https://github.com/NG-ZORRO/ng-zorro-antd/compare/7.0.0-rc.2...7.0.0-rc.3) (2018-12-26)


### Bug Fixes

* **table:** fix table sticky style ([#2688](https://github.com/NG-ZORRO/ng-zorro-antd/issues/2688)) ([50d4fc4](https://github.com/NG-ZORRO/ng-zorro-antd/commit/50d4fc4))
* **transfer:** fix the `Not Found` display condition ([#2687](https://github.com/NG-ZORRO/ng-zorro-antd/issues/2687)) ([3df5779](https://github.com/NG-ZORRO/ng-zorro-antd/commit/3df5779)), closes [#2686](https://github.com/NG-ZORRO/ng-zorro-antd/issues/2686)



# [7.0.0-rc.2](https://github.com/NG-ZORRO/ng-zorro-antd/compare/7.0.0-rc.1...7.0.0-rc.2) (2018-12-24) [deprecated]


### Bug Fixes
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.0-rc.2",
"version": "7.0.0-rc.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.0-rc.2');
export const VERSION = new Version('7.0.0-rc.3');
11 changes: 10 additions & 1 deletion docs/changelog.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,16 @@ timeline: true
* Major version release is not included in this schedule for breadking change and new features.

---
# 7.0.0-rc.2
# 7.0.0-rc.3
`2018-12-26`

### Bug Fixes

* **table:** fix table sticky style ([#2688](https://github.com/NG-ZORRO/ng-zorro-antd/issues/2688)) ([50d4fc4](https://github.com/NG-ZORRO/ng-zorro-antd/commit/50d4fc4))
* **transfer:** fix the `Not Found` display condition ([#2687](https://github.com/NG-ZORRO/ng-zorro-antd/issues/2687)) ([3df5779](https://github.com/NG-ZORRO/ng-zorro-antd/commit/3df5779)), closes [#2686](https://github.com/NG-ZORRO/ng-zorro-antd/issues/2686)


# 7.0.0-rc.2 [deprecated]
`2018-12-24`

### Bug Fixes
Expand Down
11 changes: 10 additions & 1 deletion docs/changelog.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,16 @@ timeline: true
* 主版本号:含有破坏性更新和新特性,不在发布周期内。

---
# 7.0.0-rc.2
# 7.0.0-rc.3
`2018-12-26`

### Bug Fixes

* **table:** 修复 table 的 sticky 躺尸 ([#2688](https://github.com/NG-ZORRO/ng-zorro-antd/issues/2688)) ([50d4fc4](https://github.com/NG-ZORRO/ng-zorro-antd/commit/50d4fc4))
* **transfer:** 修复 `Not Found` 的异常显示 ([#2687](https://github.com/NG-ZORRO/ng-zorro-antd/issues/2687)) ([3df5779](https://github.com/NG-ZORRO/ng-zorro-antd/commit/3df5779)), closes [#2686](https://github.com/NG-ZORRO/ng-zorro-antd/issues/2686)


# 7.0.0-rc.2 [deprecated]
`2018-12-24`

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion scripts/site/_site/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class AppComponent implements OnInit, AfterViewInit {
'0.7.x',
'1.8.x'
];
currentVersion = '7.0.0-rc.2';
currentVersion = '7.0.0-rc.3';

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

Expand Down
30 changes: 15 additions & 15 deletions scripts/site/_site/src/app/share/nz-codebox/nz-codebox.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ export class NzCodeBoxComponent implements OnInit {
@Input() nzGenerateCommand = '';

@Input() set nzIframeSource(value: string) {
this.showIframe = (value != 'null') && environment.production;
this.simulateIFrame = (value != 'null') && !environment.production;
this.showIframe = (value !== 'null') && environment.production;
this.simulateIFrame = (value !== 'null') && !environment.production;
this.iframe = this.sanitizer.bypassSecurityTrustResourceUrl(value);
}

Expand Down Expand Up @@ -386,22 +386,22 @@ export class AppModule { }
description : 'Created with <3 by the StackBlitz SDK!',
template : 'angular-cli',
dependencies: {
'rxjs' : '~6.3.3',
'@angular/cdk' : '~7.0.0',
'@angular/core' : '~7.0.0',
'@angular/forms' : '~7.0.0',
'@angular/http' : '~7.0.0',
'@angular/language-service' : '~7.0.0',
'@angular/platform-browser' : '~7.0.0',
'@angular/platform-browser-dynamic': '~7.0.0',
'@angular/common' : '~7.0.0',
'@angular/router' : '~7.0.0',
'@angular/animations' : '~7.0.0',
'@ant-design/icons-angular' : '~2.0.1',
'rxjs' : '^6.3.3',
'@angular/cdk' : '^7.0.0',
'@angular/core' : '^7.0.0',
'@angular/forms' : '^7.0.0',
'@angular/http' : '^7.0.0',
'@angular/language-service' : '^7.0.0',
'@angular/platform-browser' : '^7.0.0',
'@angular/platform-browser-dynamic': '^7.0.0',
'@angular/common' : '^7.0.0',
'@angular/router' : '^7.0.0',
'@angular/animations' : '^7.0.0',
'@ant-design/icons-angular' : '^2.0.1',
'date-fns' : '^1.29.0',
'tslib' : '^1.9.3',
'typescript' : '~3.1.1',
'ng-zorro-antd' : '^7.0.0-rc.2'
'ng-zorro-antd' : '^7.0.0-rc.3'
},
tags : [ 'stackblitz', 'sdk' ]
});
Expand Down

0 comments on commit d0ee5ad

Please sign in to comment.