From d33375a955cf424f1bd67542bf51ee02cd178118 Mon Sep 17 00:00:00 2001 From: chenjianpeng Date: Thu, 23 Sep 2021 09:47:16 +0800 Subject: [PATCH] =?UTF-8?q?1,=E6=AD=A3=E5=BC=8F=E7=89=88=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 | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0f3dac..952f1e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.0.0 +ohos 第二个版本 +- 正式版本 ## 0.0.1-SNAPSHOT ohos 第一个版本,实现了原库的大部分api功能: - 1,Webview上做刷新操作无法实现,Webview会覆盖其它组件 diff --git a/README.md b/README.md index 8f93781..77684bd 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -30,7 +30,7 @@ allprojects { 2.在entry模块的build.gradle文件中, ``` dependencies { - implementation('com.gitee.chinasoft_ohos:TwinklingRefreshLayout:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:TwinklingRefreshLayout:1.0.0') ...... } ``` @@ -154,7 +154,7 @@ CloudTest代码测试无异常 #### 版本迭代 -- 0.0.1-SNAPSHOT +- 1.0.0 #### 版权和许可信息 diff --git a/build.gradle b/build.gradle index 8d8841f..a0103a3 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 3310548..64a77ac 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -20,7 +20,7 @@ dependencies { testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' // implementation project(":library") - implementation('com.gitee.chinasoft_ohos:TwinklingRefreshLayout:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:TwinklingRefreshLayout:1.0.0') } decc { supportType = ['html', 'xml'] -- Gitee