From a7e433bf036fe2ac2450653ec6b32219882f9262 Mon Sep 17 00:00:00 2001 From: renpengfei Date: Thu, 29 Jul 2021 15:07:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E6=AD=A3=E5=BC=8F=E7=89=88?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ README.md | 6 +++--- build.gradle | 2 +- entry/build.gradle | 4 ++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8603932..a4bff7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.0.0 +ohos 第三个版本 + * 正式版本 ## 0.0.2-SNAPSHOT ohos 第二个版本 * 适配最新版本 diff --git a/README.md b/README.md index 99ecb3e..3e37a9d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -25,7 +25,7 @@ 2.在entry模块的build.gradle文件中, ``` dependencies { - implementation('com.gitee.chinasoft_ohos:ShadowLayout:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ShadowLayout:1.0.0') ...... } ``` @@ -123,7 +123,7 @@ CloudTest代码测试无异常 ## 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.0 ## 版权和许可信息 ``` diff --git a/build.gradle b/build.gradle index a4bbee5..9d4eb5c 100644 --- a/build.gradle +++ b/build.gradle @@ -27,7 +27,7 @@ buildscript { 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 b72afe7..34171f2 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -19,9 +19,9 @@ ohos { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' - ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' + ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.200' // compile project(path: ':library') - implementation('com.gitee.chinasoft_ohos:ShadowLayout:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ShadowLayout:1.0.0') } decc { supportType = ['html','xml'] -- Gitee