From 02a166b357d54845bb83550590742a842a39e584 Mon Sep 17 00:00:00 2001 From: chenjianpeng Date: Wed, 28 Jul 2021 15:45:08 +0800 Subject: [PATCH] =?UTF-8?q?1,=E7=89=88=E6=9C=AC=E5=8D=87=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ README.md | 10 +++++----- build.gradle | 2 +- entry/build.gradle | 6 +++--- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82a1975..9cf1745 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.0.0 +ohos 第三个版本 +- 正式版本 ## 0.0.2-SNAPSHOT ohos 第二个版本,更新SDK6 ## 0.0.1-SNAPSHOT diff --git a/README.md b/README.md index 0707389..5085b44 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -26,9 +26,9 @@ allprojects { 2.在entry模块的build.gradle文件中, ``` dependencies { - implementation('com.gitee.chinasoft_ohos:ImageSelector-imagepicker:0.0.2-SNAPSHOT') - implementation('com.gitee.chinasoft_ohos:ImageSelector-cameralibrary:0.0.2-SNAPSHOT') - implementation('com.gitee.chinasoft_ohos:ImageSelector-ucrop:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ImageSelector-imagepicker:1.0.0') + implementation('com.gitee.chinasoft_ohos:ImageSelector-cameralibrary:1.0.0') + implementation('com.gitee.chinasoft_ohos:ImageSelector-ucrop:1.0.0') ...... } ``` @@ -115,4 +115,4 @@ CloudTest代码测试无异常 #### 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.0 diff --git a/build.gradle b/build.gradle index d8bca9b..9a49f23 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 2852f48..12b9b0a 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -28,9 +28,9 @@ dependencies { implementation "io.openharmony.tpc.thirdlib:imageloader:1.0.0" implementation 'io.openharmony.tpc.thirdlib:glide:1.0.3' - implementation('com.gitee.chinasoft_ohos:ImageSelector-imagepicker:0.0.2-SNAPSHOT') - implementation('com.gitee.chinasoft_ohos:ImageSelector-cameralibrary:0.0.2-SNAPSHOT') - implementation('com.gitee.chinasoft_ohos:ImageSelector-ucrop:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ImageSelector-imagepicker:1.0.0') + implementation('com.gitee.chinasoft_ohos:ImageSelector-cameralibrary:1.0.0') + implementation('com.gitee.chinasoft_ohos:ImageSelector-ucrop:1.0.0') } decc { supportType = ['html', 'xml'] -- Gitee