diff --git a/CHANGELOG.md b/CHANGELOG.md index c0f3dacef72490d7ee7710ed5ba6b67ef49a38ae..952f1e345426ad292ebe04d5e2ef57cf2134e695 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 8f937817c6e213663fc5289a7107d06a51679103..77684bdbd94d43bd009eeb584fcfa958ba570cd4 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 8d8841fe541089eafedb591330e0c948cd7e7842..a0103a3d8c599f27eba4187654a7f8ff90999208 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 3310548b83b132be4d0c17ecddb36edcdb397b58..64a77ac738fdc13a5e486cd2edca6bfd36f796f1 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']