Skip to content

Commit b4161cd

Browse files
authored
release(7.3.1): release 7.3.1 (#3328)
1 parent be33dab commit b4161cd

9 files changed

Lines changed: 34 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [7.3.1](https://github.com/NG-ZORRO/ng-zorro-antd/compare/7.3.0...7.3.1) (2019-04-22)
2+
3+
4+
### Bug Fixes
5+
6+
* **tree:** fix nodes list to render correctly ([#3326](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3326)) ([6d759a8](https://github.com/NG-ZORRO/ng-zorro-antd/commit/6d759a8)), closes [#3320](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3320)
7+
* **select:** fix select search display ([#3324](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3324)) ([d91af03](https://github.com/NG-ZORRO/ng-zorro-antd/commit/d91af03)), closes [#3322](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3322)
8+
9+
10+
111
# [7.3.0](https://github.com/NG-ZORRO/ng-zorro-antd/compare/7.2.0...7.3.0) (2019-04-21)
212

313
### Features

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.3.0",
3+
"version": "7.3.1",
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.3.0');
3+
export const VERSION = new Version('7.3.1');

docs/changelog.en-US.md

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

1515
---
16+
17+
## 7.3.1
18+
`2019-04-22`
19+
20+
### Bug Fixes
21+
22+
* **tree:** fix nodes list to render correctly ([#3326](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3326)) ([6d759a8](https://github.com/NG-ZORRO/ng-zorro-antd/commit/6d759a8)), closes [#3320](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3320)
23+
* **select:** fix select search display ([#3324](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3324)) ([d91af03](https://github.com/NG-ZORRO/ng-zorro-antd/commit/d91af03)), closes [#3322](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3322)
24+
1625
## 7.3.0
1726
`2019-04-21`
1827

docs/changelog.zh-CN.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ timeline: true
1414

1515
---
1616

17+
## 7.3.1
18+
`2019-04-22`
19+
20+
### Bug Fixes
21+
22+
* **tree:** 修复数据渲染问题 ([#3326](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3326)) ([6d759a8](https://github.com/NG-ZORRO/ng-zorro-antd/commit/6d759a8)), closes [#3320](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3320)
23+
* **select:** 修复 nzShowSearch 时搜索无效的问题 ([#3324](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3324)) ([d91af03](https://github.com/NG-ZORRO/ng-zorro-antd/commit/d91af03)), closes [#3322](https://github.com/NG-ZORRO/ng-zorro-antd/issues/3322)
24+
1725
## 7.3.0
1826
`2019-04-21`
1927

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"scripts": {
1010
"build-iframe": "node --max_old_space_size=5120 ./node_modules/@angular/cli/bin/ng build --project=ng-zorro-antd-iframe --prod --base-href ./",
1111
"build-site": "node --max_old_space_size=5120 ./node_modules/@angular/cli/bin/ng build --prod",
12+
"build-static": "bash ./scripts/build/prerender.sh",
1213
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --pkg components/package.json && node ./scripts/site/replace-scope-prefix.js",
1314
"doc": "npm run site:init && node --max_old_space_size=5120 ./node_modules/@angular/cli/bin/ng build --prod",
1415
"format:check": "prettier --config ./.prettierrc --list-different \"component/**/*{.ts}\"",
@@ -22,7 +23,7 @@
2223
"migration-styles": "node ./scripts/build/migration-styles.js",
2324
"ng": "ng",
2425
"postgenerate": "node scripts/build/compile-styles.js && cp README.md publish/README.md && npm run migration-styles && npm run schematic:generate",
25-
"pre-release": "npm run site:init && bash ./scripts/build/replace-publish.sh && npm run generate && npm run build-site && npm run build-iframe && npm run helper",
26+
"pre-release": "npm run site:init && bash ./scripts/build/replace-publish.sh && npm run generate && npm run build-site && npm run build-iframe && npm run helper && npm run build-static",
2627
"release": "node ./scripts/publish/publish.js",
2728
"schematic:build": "node ./scripts/schematics/set-theme.js && node ./scripts/schematics/set-version.js && npm run schematic:tsc && node ./scripts/schematics/copy-resources",
2829
"schematic:demo": "node ./scripts/schematics/demo2schematics",
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ npx prerender mirror -r /tmp/doc-prerender/ http://localhost:4000/
1313

1414
kill `lsof -t -i :4000` || true
1515

16+
mv /tmp/doc-prerender/localhost:4000/index.html /tmp/doc-prerender/localhost:4000/index_static.html
1617
cp -r /tmp/doc-prerender/localhost:4000/* dist/
1718

1819
set +x

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class AppComponent implements OnInit, AfterViewInit {
3939

4040
language = 'zh';
4141
oldVersionList = [ '0.5.x', '0.6.x', '0.7.x', '1.8.x' ];
42-
currentVersion = '7.3.0';
42+
currentVersion = '7.3.1';
4343

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ export class AppModule { }`;
260260
'date-fns' : '^1.29.0',
261261
tslib : '^1.9.3',
262262
typescript : '~3.1.1',
263-
'ng-zorro-antd': '^7.3.0'
263+
'ng-zorro-antd': '^7.3.1'
264264
},
265265
tags : [ 'stackblitz', 'sdk' ]
266266
};

0 commit comments

Comments
 (0)