From 9bdc904aa10f5a1a0c372d861e476a887dbccbbd Mon Sep 17 00:00:00 2001 From: KrrI Date: Sat, 8 Feb 2025 10:19:09 +0800 Subject: [PATCH] =?UTF-8?q?chore:=E5=A2=9E=E5=8A=A0=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E8=AE=BE=E5=A4=87=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: KrrI --- CHANGELOG.md | 5 +++++ entry/oh-package.json5 | 2 +- library/oh-package.json5 | 2 +- library/src/main/module.json5 | 6 +++++- oh-package.json5 | 2 +- 5 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d43bfa..8d669f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### 2.1.1 + +1. Supports cross-module jump +2. Fixed a crash when pushing a page that does not exist under hsp + ### 2.1.1-rc.1 1. Supports cross-module jump diff --git a/entry/oh-package.json5 b/entry/oh-package.json5 index 8afcd72..7fc9f1f 100644 --- a/entry/oh-package.json5 +++ b/entry/oh-package.json5 @@ -4,7 +4,7 @@ "name": "entry", "description": "example description", "repository": "", - "version": "2.1.1-rc.1", + "version": "2.1.1", "dependencies": { "@ohos/arouteronactivityresult": "file:../library", "@ohos/libraryOne": "file:../libraryOne", diff --git a/library/oh-package.json5 b/library/oh-package.json5 index 99976bf..ffb6288 100644 --- a/library/oh-package.json5 +++ b/library/oh-package.json5 @@ -12,7 +12,7 @@ "main": "index.ets", "repository": "https://gitee.com/openharmony-tpc/arouter-api-onActivityResult", "type": "module", - "version": "2.1.1-rc.1", + "version": "2.1.1", "dependencies": {}, "tags": [ "Tool" diff --git a/library/src/main/module.json5 b/library/src/main/module.json5 index 0204bcb..eb867b4 100644 --- a/library/src/main/module.json5 +++ b/library/src/main/module.json5 @@ -4,7 +4,11 @@ "type": "har", "deviceTypes": [ "default", - "tablet" + "tablet", + "2in1", + "tv", + "wearable", + "car" ] } } \ No newline at end of file diff --git a/oh-package.json5 b/oh-package.json5 index 03bf08e..27cdd20 100644 --- a/oh-package.json5 +++ b/oh-package.json5 @@ -7,6 +7,6 @@ "name": "arouter-api-onactivityresult", "description": "example description", "repository": {}, - "version": "2.1.1-rc.1", + "version": "2.1.1", "dependencies": {} } \ No newline at end of file -- Gitee