diff --git a/CHANGELOG.md b/CHANGELOG.md index 305a55862c0dc00b1c23a6bcca4496a149f45c93..3a5908b55df61280542c19fbf04832d2675ece30 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 f25f31253c57787042f13a81f236573b90903b71..b540bf3ef1cf88d49c126fc75e256a0b0a7c1c08 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 18e7fac121106bea49948720ca9961eb020a92c6..45dde849947696d10f1cec3494000b4e59e78754 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 1e923c0dc7356616c0d22123dc01f86c1bf7d406..7e4ee5768072824aac3f26a27efbfe04a9254c0c 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 e0754e620d75bbbfd83d1a983e1d1585b20c3584..7b28f2bafe1c9db787933406463a630356da1398 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' }