From 56d7b562d038e9ae60f8a12d33acb9b5618561c4 Mon Sep 17 00:00:00 2001 From: liangqingsong Date: Thu, 23 Sep 2021 10:43:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E6=AD=A3=E5=BC=8F=E7=89=88?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ README.md | 6 +++--- build.gradle | 2 +- entry/build.gradle | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9898c01..c4ad7b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.0.0 +正式版本 + ## 0.0.1-SNAPSHOT ohos 第一个版本 diff --git a/README.md b/README.md index 5244160..0fa2b4c 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -30,7 +30,7 @@ allprojects { ``` dependencies { - implementation('com.gitee.chinasoft_ohos:MaterialShowcaseView:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:MaterialShowcaseView:1.0.0') ...... } ``` @@ -124,7 +124,7 @@ CloudTest代码测试无异常 ## 版本迭代 -- 0.0.1-SNAPSHOT +- 1.0.0 ## 版权和许可信息 diff --git a/build.gradle b/build.gradle index b625250..868c239 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/' } } } diff --git a/entry/build.gradle b/entry/build.gradle index 6c42b3a..ba4920a 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -25,7 +25,7 @@ dependencies { // implementation project(':library') //maven仓库依赖 - implementation('com.gitee.chinasoft_ohos:MaterialShowcaseView:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:MaterialShowcaseView:1.0.0') } decc { supportType = ['html','xml'] -- Gitee