From 1ada0a3f63d81036b7d197caed3837c0db52d032 Mon Sep 17 00:00:00 2001 From: liangqingsong Date: Wed, 22 Sep 2021 17:46:21 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E4=BE=9D=E8=B5=96?= =?UTF-8?q?=E4=B8=BA=E7=94=9F=E6=88=90=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 +++- README.md | 6 +++--- build.gradle | 2 +- entry/build.gradle | 6 ++++-- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e4b586..4937e5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ -## 0.0.2-SNAPSHOT +## 1.0.0 +生成版本 +## 0.0.2-SNAPSHOT ohos 第2个版本,修改了代码规范 ## 0.0.1-SNAPSHOT ohos 第1个版本,实现了原库的全部api \ No newline at end of file diff --git a/README.md b/README.md index ef34ee7..91a4525 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:unifiedCircularProgress:0.0.2-SNAPSHOT') + implementation ('com.gitee.chinasoft_ohos:unifiedCircularProgress:1.0.0') ···· } ``` @@ -56,4 +56,4 @@ CloudTest代码测试无异常 当前版本demo功能与原组件基本无差异 ## 版本迭代 -> * 0.0.2-SNAPSHOT \ No newline at end of file +> * 1.0.0 \ No newline at end of file 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 c89c86d..14fa470 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -20,9 +20,11 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.200' - + //本地依赖 // implementation project(':library') - implementation ('com.gitee.chinasoft_ohos:unifiedCircularProgress:0.0.2-SNAPSHOT') + + //maven仓依赖 + implementation ('com.gitee.chinasoft_ohos:unifiedCircularProgress:1.0.0') } decc { supportType = ['html', 'xml'] -- Gitee From 854e386d77dcc6cc4ae35a6f8afd026cb3a1755f Mon Sep 17 00:00:00 2001 From: liangqingsong Date: Wed, 22 Sep 2021 17:49:06 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E4=BE=9D=E8=B5=96?= =?UTF-8?q?=E4=B8=BA=E7=94=9F=E4=BA=A7=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4937e5f..584604c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ ## 1.0.0 -生成版本 +生产版本 ## 0.0.2-SNAPSHOT ohos 第2个版本,修改了代码规范 ## 0.0.1-SNAPSHOT -- Gitee