From 18b1ed5f7914881ecbfa53ef7c26864067196136 Mon Sep 17 00:00:00 2001 From: 0000248716-lijiaxiao Date: Wed, 28 Jul 2021 16:34:48 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=88=E6=9C=AC=E8=BF=AD=E4=BB=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ README.md | 6 +++--- build.gradle | 2 +- entry/build.gradle | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd07434..895feea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 版本迭代 +* 1.0.1正式版 ## 0.0.3-SNAPSHOT ohos 第2个版本 diff --git a/README.md b/README.md index 9ee1e88..ba5e495 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/' } } } @@ -27,7 +27,7 @@ 2.在entry模块的build.gradle文件中, ``` dependencies { - implementation('com.gitee.chinasoft_ohos:qrcodescanner:0.0.3-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:qrcodescanner:1.0.1') ...... } ``` @@ -76,7 +76,7 @@ CloudTest代码测试无异常 #### 版本迭代 -- 0.0.3-SNAPSHOT +- 1.0.1 #### 版权和许可信息 GPLv3 \ No newline at end of file diff --git a/build.gradle b/build.gradle index 6796aad..c04bb2e 100644 --- a/build.gradle +++ b/build.gradle @@ -33,7 +33,7 @@ allprojects { url 'https://developer.huawei.com/repo/' } maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } jcenter() } diff --git a/entry/build.gradle b/entry/build.gradle index d954160..7f3364a 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -19,7 +19,7 @@ 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:qrcodescanner:0.0.3-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:qrcodescanner:1.0.1') // compile project(":qrcodescanner") } decc { -- Gitee