From 02d703cc05ed1fb35cbf48b662b214efd0e24879 Mon Sep 17 00:00:00 2001 From: renpengfei Date: Wed, 1 Sep 2021 16:02:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ README.md | 6 +++--- entry/build.gradle | 4 ++-- router_api/build.gradle | 3 ++- router_compiler/build.gradle | 2 +- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 305a558..3a5908b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 1.0.1 +正式版本 ## 1.0.0 正式版本 ## 0.0.2-SNAPSHOT diff --git a/README.md b/README.md index f25f312..b540bf3 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,8 @@ allprojects { ``` dependencies { - implementation 'com.gitee.chinasoft_ohos:router_api:1.0.0' - annotationProcessor 'com.gitee.chinasoft_ohos:router_compiler:1.0.0' + implementation 'com.gitee.chinasoft_ohos:router_api:1.0.1' + annotationProcessor 'com.gitee.chinasoft_ohos:router_compiler:1.0.1' ...... } ``` @@ -324,7 +324,7 @@ CloudTest代码测试无异常 ## 版本迭代 -1.0.0 +1.0.1 ## 版权和许可信息 diff --git a/entry/build.gradle b/entry/build.gradle index 18e7fac..45dde84 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -11,8 +11,8 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' - implementation 'com.gitee.chinasoft_ohos:router_api:1.0.0' - annotationProcessor 'com.gitee.chinasoft_ohos:router_compiler:1.0.0' + implementation 'com.gitee.chinasoft_ohos:router_api:1.0.1' + annotationProcessor 'com.gitee.chinasoft_ohos:router_compiler:1.0.1' // 这是依赖本地方式 // annotationProcessor project(path:':router_compiler') // implementation project(path:':router_api') diff --git a/router_api/build.gradle b/router_api/build.gradle index 1e923c0..7e4ee57 100644 --- a/router_api/build.gradle +++ b/router_api/build.gradle @@ -1,4 +1,5 @@ apply plugin: 'com.huawei.ohos.library' + ohos { compileSdkVersion 6 defaultConfig { @@ -10,5 +11,5 @@ ohos { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' - api 'com.gitee.chinasoft_ohos:router_anno:1.0.0' + api 'com.gitee.chinasoft_ohos:router_anno:1.0.1' } diff --git a/router_compiler/build.gradle b/router_compiler/build.gradle index e0754e6..7b28f2b 100644 --- a/router_compiler/build.gradle +++ b/router_compiler/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'java-library' dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) api 'com.squareup:javapoet:1.7.0' - api 'com.gitee.chinasoft_ohos:router_anno:1.0.0' + api 'com.gitee.chinasoft_ohos:router_anno:1.0.1' implementation 'com.google.auto.service:auto-service:1.0-rc2' } -- Gitee