From 515b316de4f8f3ed62eec579e641458bf234f213 Mon Sep 17 00:00:00 2001 From: liangqingsong Date: Wed, 28 Jul 2021 18:55:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=87=E7=BA=A7=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 | 6 +++++- README.md | 6 +++--- build.gradle | 2 +- entry/build.gradle | 4 +++- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12da782..4442be8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ +## 1.0.1 +ohos 第三个版本 + * 正式版本 + ## 0.0.2-SNAPSHOT -ohos 第2个版本 +ohos 第二个版本 * 更新sdk6 ## 0.0.1-SNAPSHOT diff --git a/README.md b/README.md index 7189e6a..f97da5c 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:StateButton:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:StateButton:1.0.1') } ``` @@ -98,7 +98,7 @@ CloudTest代码测试无异常 ### 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.1 ### 版权和许可信息 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 b0b0700..bdca8c6 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -17,9 +17,11 @@ ohos { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) - implementation('com.gitee.chinasoft_ohos:StateButton:0.0.2-SNAPSHOT') testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' + + // maven依赖 + implementation('com.gitee.chinasoft_ohos:StateButton:1.0.1') } decc { supportType = ['html', 'xml'] -- Gitee