From a6c0f9d1d4189d8ec194c314668f67d92046ac4e Mon Sep 17 00:00:00 2001 From: xiongwengong Date: Thu, 30 Sep 2021 10:50:33 +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 | 3 ++- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16f1b19..0009691 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 1.0.0 +ohos 第三个版本,正式版 ## 0.0.2-SNAPSHOT ohos 第二个版本,更新SDK6 ## 0.0.1-SNAPSHOT diff --git a/README.md b/README.md index fe21bd1..6719321 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 @@ allprojects { 2.在entry模块的build.gradle文件中, ``` dependencies { - implementation('com.gitee.chinasoft_ohos:ChartProgressBar-ohos_library:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ChartProgressBar-ohos_library:1.0.0') ...... } ``` @@ -203,4 +203,4 @@ CloudTest代码测试无异常 #### 版本迭代 -- 0.0.2-SNAPSHOT \ No newline at end of file +- 1.0.0 \ No newline at end of file diff --git a/build.gradle b/build.gradle index a4bbee5..c50ec59 100644 --- a/build.gradle +++ b/build.gradle @@ -19,15 +19,15 @@ 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' } } allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } maven { url 'https://repo.huaweicloud.com/repository/maven/' diff --git a/entry/build.gradle b/entry/build.gradle index 4015fe5..e6023df 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -20,7 +20,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:ChartProgressBar-ohos_library:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ChartProgressBar-ohos_library:1.0.0') +// implementation project(':Charts') } decc { supportType = ['html', 'xml'] -- Gitee