diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index f82a9d5c..873e9fae 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x] + node-version: [18.x] task: [test-headless, pre-release] steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 67fbe127..6a8e44bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# [10.0.0](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/compare/9.0.0...10.0.0) (2024-01-04) + + +### Features + +* **all:** support Angular 17 ([#886](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/886)) ([31e8ca5](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/31e8ca5869140768b6a10c8a4e8e362c99b62c78)) + + + # [9.0.0](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/compare/8.0.0...9.0.0) (2023-06-20) diff --git a/README-zh_CN.md b/README-zh_CN.md index 048c966b..54c8d6aa 100644 --- a/README-zh_CN.md +++ b/README-zh_CN.md @@ -38,7 +38,7 @@ ## Angular 支持 -现在支持 Angular `^16.0.0`. +现在支持 Angular `^17.0.0`. ## 安装 diff --git a/README.md b/README.md index 82551021..3fafd844 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ This is the **Angular** implementation of **Ant Design Mobile** specification, s ## Angular Support -Now Supports Angular `^16.0.0`. +Now Supports Angular `^17.0.0`. ## Installation diff --git a/components/package.json b/components/package.json index 022f4f1c..47a97798 100644 --- a/components/package.json +++ b/components/package.json @@ -1,6 +1,6 @@ { "name": "ng-zorro-antd-mobile", - "version": "9.0.0", + "version": "10.0.0", "description": "An enterprise-class mobile UI components based on Ant Design and Angular", "schematics": "./schematics/collection.json", "keywords": [ @@ -22,26 +22,26 @@ "url": "https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues" }, "dependencies": { - "@angular/animations": "^16.0.0", - "@angular/cdk": "^16.0.0", - "@angular/common": "^16.0.0", - "@angular/compiler": "^16.0.0", - "@angular/core": "^16.0.0", - "@angular/forms": "^16.0.0", - "@angular/platform-browser": "^16.0.0", - "@angular/platform-browser-dynamic": "^16.0.0", - "@angular/router": "^16.0.0", - "@ant-design/icons-angular": "^16.0.0" + "@angular/animations": "^17.0.0", + "@angular/cdk": "^17.0.0", + "@angular/common": "^17.0.0", + "@angular/compiler": "^17.0.0", + "@angular/core": "^17.0.0", + "@angular/forms": "^17.0.0", + "@angular/platform-browser": "^17.0.0", + "@angular/platform-browser-dynamic": "^17.0.0", + "@angular/router": "^17.0.0", + "@ant-design/icons-angular": "^17.0.0" }, "devDependencies": { - "@angular/upgrade": "^16.0.0", - "@angular-devkit/build-angular": "^16.0.0", - "@angular/cli": "^16.0.0", - "@angular/compiler-cli": "^16.0.0", - "@angular/platform-server": "^16.0.0", + "@angular/upgrade": "^17.0.0", + "@angular-devkit/build-angular": "^17.0.0", + "@angular/cli": "^17.0.0", + "@angular/compiler-cli": "^17.0.0", + "@angular/platform-server": "^17.0.0", "tslib": "^2.4.1", "tslint": "~6.1.3", - "typescript": "~5.0.4" + "typescript": "~5.2.4" }, "lint-staged": { "{src,docs}/**/*.{scss}": [ diff --git a/docs/changelog.en-US.md b/docs/changelog.en-US.md index 2600524f..ec7e80f2 100755 --- a/docs/changelog.en-US.md +++ b/docs/changelog.en-US.md @@ -13,6 +13,13 @@ 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. +## 10.0.0(2024-01-04) + + +### Features + +* **all:** support Angular 17 ([#886](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/886)) ([31e8ca5](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/31e8ca5869140768b6a10c8a4e8e362c99b62c78)) + ## 9.0.0(2023-06-20) ### Bug Fixes diff --git a/docs/changelog.zh-CN.md b/docs/changelog.zh-CN.md index dd6ddd87..45fd780a 100755 --- a/docs/changelog.zh-CN.md +++ b/docs/changelog.zh-CN.md @@ -13,6 +13,14 @@ timeline: true - 次版本号:每月发布一个带有新特性的向下兼容的版本。 - 主版本号:含有破坏性更新和新特性,不在发布周期内。 +## 10.0.0(2024-01-04) + + +### Features + +* **all:** 升级支持 Angular 17 ([#886](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/issues/886)) ([31e8ca5](https://github.com/NG-ZORRO/ng-zorro-antd-mobile/commit/31e8ca5869140768b6a10c8a4e8e362c99b62c78)) + + ## 9.0.0(2023-06-20) ### Bug Fixes diff --git a/docs/introduce.en-US.md b/docs/introduce.en-US.md index 152d8255..128a8908 100755 --- a/docs/introduce.en-US.md +++ b/docs/introduce.en-US.md @@ -133,7 +133,7 @@ This is the **Angular** implementation of **Ant Design Mobile** specification, s ## Angular Support -Now Supports Angular `^16.0.0`. +Now Supports Angular `^17.0.0`. ## Installation diff --git a/docs/introduce.zh-CN.md b/docs/introduce.zh-CN.md index f4420587..d2798411 100755 --- a/docs/introduce.zh-CN.md +++ b/docs/introduce.zh-CN.md @@ -133,7 +133,7 @@ title: Ant Design Mobile of Angular