From 2436bfbe03c8df3ca19b4bbffed050f2333eb0a5 Mon Sep 17 00:00:00 2001 From: 0000248716-lijiaxiao Date: Mon, 2 Aug 2021 09:38:16 +0800 Subject: [PATCH] 1.0.0 --- CHANGELOG.md | 2 +- README.md | 4 ++-- entry/build.gradle | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41c3747..ef506c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.0.1-SNAPSHOT +## 0.0.2-SNAPSHOT * ohos 第一个版本,完整实现了原库的全部 api * 与原项目显示有轻微差异(原项目按钮自带点击效果,openharmony按钮没有带点击效果) diff --git a/README.md b/README.md index 04d1645..ced1549 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ 2.在entry模块的build.gradle文件中, ``` dependencies { - implementation('com.gitee.chinasoft_ohos:SimpleRatingBar:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:SimpleRatingBar:0.0.2-SNAPSHOT') ...... } ``` @@ -84,7 +84,7 @@ CloudTest代码测试无异常 #### 版本迭代 -- 0.0.1-SNAPSHOT +- 0.0.2-SNAPSHOT #### 版权和许可信息 MIT License diff --git a/entry/build.gradle b/entry/build.gradle index 5aacba7..e85dd3c 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -20,8 +20,8 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' - // implementation('com.gitee.chinasoft_ohos:SimpleRatingBar:0.0.1-SNAPSHOT') - compile project(":library") + implementation('com.gitee.chinasoft_ohos:SimpleRatingBar:0.0.2-SNAPSHOT') + // compile project(":library") } decc { supportType = ['html','xml'] -- Gitee