From ed4f42b7ce7057e99cbf4bc583b4b7ac8cbfc5a8 Mon Sep 17 00:00:00 2001 From: xiongwengong Date: Thu, 30 Sep 2021 14:42:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=AD=A3=E5=BC=8F=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ README.md | 6 +++--- build.gradle | 6 +++--- entry/build.gradle | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 050f728..dc7fdf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 1.0.0 +ohos 第三个版本,正式版 ## 0.0.2-SNAPSHOT ohos 第二个版本 ## 0.0.1-SNAPSHOT diff --git a/README.md b/README.md index aa3211c..4bb5730 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -29,7 +29,7 @@ 2.在entry模块的build.gradle文件中, ```java dependencies { - implementation('com.gitee.chinasoft_ohos:FloatingViewLib:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:FloatingViewLib:1.0.0') ...... } ``` @@ -187,7 +187,7 @@ CloudTest代码测试无异常 #### 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.0 ## 版权和许可信息 diff --git a/build.gradle b/build.gradle index 8726113..d736619 100644 --- a/build.gradle +++ b/build.gradle @@ -19,8 +19,8 @@ buildscript { jcenter() } dependencies { - classpath 'com.huawei.ohos:hap:2.4.5.0' - classpath 'com.huawei.ohos:decctest:1.2.4.1' + classpath 'com.huawei.ohos:hap:3.0.3.2' + classpath 'com.huawei.ohos:decctest:1.2.6.0' } } @@ -33,7 +33,7 @@ allprojects { url 'https://developer.huawei.com/repo/' } maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } jcenter() } diff --git a/entry/build.gradle b/entry/build.gradle index 2872ef8..0acfbf6 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -11,7 +11,7 @@ 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:FloatingView:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:FloatingView:1.0.0') // implementation project(':FloatingViewLib') } decc { -- Gitee