diff --git a/CHANGELOG.md b/CHANGELOG.md index bab0baddadfb4db273256888f93bf1673b5b812b..de5b3fa74e14f846a998d36fcd76104e179f3633 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.0.0 +正式版发布 + ## 0.0.1-SNAPSHOT ohos 第一个版本 diff --git a/README.md b/README.md index d2f2b56adec7cd7d7910c66aca990f11fcb99cdc..445844cc1f83087b5a39e43c0528a34a421cfd13 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -28,7 +28,7 @@ allprojects { 2.在entry模块的build.gradle文件中, ``` dependencies { - implementation('com.gitee.chinasoft_ohos:TimeLine:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:TimeLine:1.0.0') ...... } @@ -178,7 +178,7 @@ CloudTest代码测试无异常 当前版本demo功能与原组件基本无差异 ## 版本迭代 -* 0.0.1-SNAPSHOT +* 1.0.0 ## 版权和许可信息 ``` diff --git a/build.gradle b/build.gradle index 3a41c328e590c35c56441837592a1f186768a759..9b6360d179b225601475efa425543e69da403401 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ ohos { compatibleSdkVersion 5 } } - + buildscript { repositories { maven { @@ -17,8 +17,8 @@ buildscript { } } dependencies { - classpath 'com.huawei.ohos:hap:2.4.5.0' - classpath 'com.huawei.ohos:decctest:1.2.4.1' + classpath 'com.huawei.ohos:hap:2.4.5.5' + classpath 'com.huawei.ohos:decctest:1.2.5.1' } }