From d5e59ff528ade3038e6f1d435942206d6f2d80e4 Mon Sep 17 00:00:00 2001 From: xiongwengong Date: Tue, 28 Sep 2021 10:39:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=AD=A3=E5=BC=8F=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 +++- README.md | 6 +++--- build.gradle | 6 +++--- entry/build.gradle | 3 ++- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54123fb..3f26b92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ -## 0.0.2-SNAPSHOT +## 1.0.0 +ohos 第3个版本,正式版 +## 0.0.2-SNAPSHOT ohos 第2个版本,更新SDK6 ## 0.0.1-SNAPSHOT ohos 第1个版本,实现了原库的全部api \ No newline at end of file diff --git a/README.md b/README.md index e36476f..d48ae2e 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,14 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } ``` 在entry模块中的build.gradle文件中添加 ``` dependencies { - implementation ('com.gitee.chinasoft_ohos:MusicIndicator:0.0.2-SNAPSHOT') + implementation ('com.gitee.chinasoft_ohos:MusicIndicator:1.0.0') ···· } ``` @@ -61,7 +61,7 @@ CloudTest代码测试无异常 当前版本demo功能与原组件基本无差异 ## 版本迭代 -> * 0.0.2-SNAPSHOT +> * 1.0.0 ## 版权和许可信息 diff --git a/build.gradle b/build.gradle index a4bbee5..a0103a3 100644 --- a/build.gradle +++ b/build.gradle @@ -19,15 +19,15 @@ buildscript { jcenter() } 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' } } 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 87248b9..c6d5977 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -10,6 +10,7 @@ ohos { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testCompile 'junit:junit:4.12' - implementation ('com.gitee.chinasoft_ohos:MusicIndicator:0.0.2-SNAPSHOT') + implementation ('com.gitee.chinasoft_ohos:MusicIndicator:1.0.0') +// implementation project(':library') } -- Gitee