diff --git a/CHANGELOG.md b/CHANGELOG.md index 11292b71..995720b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [3.0.3](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/compare/3.0.2...3.0.3) (2020-10-21) + + +### Bug Fixes + +* **tabbar:** fix title input ts error ([#753](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/753)) ([42b17e2](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/42b17e2817e59aaf8b382ae18751db260bfd6fb8)) + + + # [3.0.2](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/compare/2.0.7...3.0.2) (2020-10-20) ### Features diff --git a/components/package.json b/components/package.json index c9c9807c..aafd885a 100644 --- a/components/package.json +++ b/components/package.json @@ -1,6 +1,6 @@ { "name": "ng-zorro-antd-mobile", - "version": "3.0.2", + "version": "3.0.3", "description": "An enterprise-class mobile UI components based on Ant Design and Angular", "schematics": "./schematics/collection.json", "keywords": [ diff --git a/docs/changelog.en-US.md b/docs/changelog.en-US.md index 80c959f0..1abe2a27 100755 --- a/docs/changelog.en-US.md +++ b/docs/changelog.en-US.md @@ -13,7 +13,7 @@ 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. -## 3.0.2(2020-10-20) +## 3.0.3(2020-10-21) ### Features @@ -21,6 +21,10 @@ timeline: true * **website:** replace QRCode ([#739](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/739)) ([b014e17](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/b014e1733c8ee5f742388adb830877d2f65925d0)) * **package.json:** bump marked from 0.6.3 to 1.1.1 ([#743](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/743)) ([abc11b9](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/abc11b94cb5af24fb190d48b3a6ba72192941ddc)) +### Bug Fixes + +* **tabbar:** fix title input ts error ([#753](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/753)) ([42b17e2](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/42b17e2817e59aaf8b382ae18751db260bfd6fb8)) + ## 2.0.7(2020-07-20) ### Bug Fixes diff --git a/docs/changelog.zh-CN.md b/docs/changelog.zh-CN.md index 4a71871d..4e74b5ce 100755 --- a/docs/changelog.zh-CN.md +++ b/docs/changelog.zh-CN.md @@ -13,7 +13,7 @@ timeline: true - 次版本号:每月发布一个带有新特性的向下兼容的版本。 - 主版本号:含有破坏性更新和新特性,不在发布周期内。 -## 3.0.2(2020-10-20) +## 3.0.3(2020-10-21) ### Features @@ -21,6 +21,10 @@ timeline: true * **website:** 替换 QRCode ([#739](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/739)) ([b014e17](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/b014e1733c8ee5f742388adb830877d2f65925d0)) * **package.json:** marked 版本升级至 1.1.1 ([#743](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/743)) ([abc11b9](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/abc11b94cb5af24fb190d48b3a6ba72192941ddc)) +### Bug Fixes + +* **tabbar:** fix title input ts error ([#753](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/753)) ([42b17e2](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/42b17e2817e59aaf8b382ae18751db260bfd6fb8)) + ## 2.0.7(2020-07-20) ### Bug Fixes diff --git a/scripts/site/_site/src/app/app.component.ts b/scripts/site/_site/src/app/app.component.ts index 851b87ca..d47accae 100644 --- a/scripts/site/_site/src/app/app.component.ts +++ b/scripts/site/_site/src/app/app.component.ts @@ -19,7 +19,7 @@ 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.1', '1.0.2', '1.0.3', '1.0.4', '1.0.5', '1.0.6', '2.0.1', '2.0.3', '2.0.7', '3.0.2']; + versionList = ['0.12.x', '1.0.1', '1.0.2', '1.0.3', '1.0.4', '1.0.5', '1.0.6', '2.0.1', '2.0.3', '2.0.7', '3.0.3']; versionMap = { '0.12.x': '0.12.5', '1.0.1': '1.0.11', @@ -31,9 +31,9 @@ export class AppComponent implements OnInit, AfterViewInit { '2.0.1': '2.0.100', '2.0.3': '2012.0.3', '2.0.7': '2012.0.7', - '3.0.2': '2013.0.2' + '3.0.3': '2013.0.3' }; - currentVersion = '3.0.2'; + currentVersion = '3.0.3'; isHomeURL = true; isKitchenURL = false; demoTitle = ''; diff --git a/scripts/site/_site/src/app/share/nz-codebox/nz-codebox.component.ts b/scripts/site/_site/src/app/share/nz-codebox/nz-codebox.component.ts index cecb9823..aa80df0b 100644 --- a/scripts/site/_site/src/app/share/nz-codebox/nz-codebox.component.ts +++ b/scripts/site/_site/src/app/share/nz-codebox/nz-codebox.component.ts @@ -352,7 +352,7 @@ export class AppModule { } '@ant-design/icons-angular': '^10.0.1', 'rxjs': '~6.6.2', 'zone.js': '~0.10.2', - 'ng-zorro-antd-mobile': '3.0.2' + 'ng-zorro-antd-mobile': '3.0.3' }, tags: ['stackblitz', 'sdk'] });