From 609676d70e8c4d52cad7db97df8bb73ed74d429c Mon Sep 17 00:00:00 2001 From: fjh Date: Wed, 28 Jul 2021 11:42:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=AD=A3=E5=BC=8F=E7=89=88=E6=9C=AC=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 +++++++--- README.md | 6 +++--- build.gradle | 2 +- entry/build.gradle | 2 +- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3a386a..5998ac9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,13 @@ -## 0.0.2-SNAPSHOT +## 1.0.0 -ohos 第二个版本: + - 正式版本 + +## 0.0.2-SNAPSHOT + + - ohos 第二个版本: 1. 修改findbugs 2. 修改SDK更新后适配配置 ## 0.0.1-SNAPSHOT -ohos 第一个版本,完整实现了原库的全部 api \ No newline at end of file + - ohos 第一个版本,完整实现了原库的全部 api \ No newline at end of file diff --git a/README.md b/README.md index 21da975..4d64016 100644 --- a/README.md +++ b/README.md @@ -16,13 +16,13 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } 2.在entry模块的build.gradle文件中, dependencies { - implementation('com.gitee.chinasoft_ohos:mkloader:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:mkloader:1.0.0') ...... } @@ -72,7 +72,7 @@ CloudTest代码测试无异常 当前版本demo,部分功能暂不支持模拟器运行 #### 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.0 #### 版权和许可信息 diff --git a/build.gradle b/build.gradle index a8a5c41..f75e36f 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 d2605af..b9f95da 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -25,7 +25,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:mkloader:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:mkloader:1.0.0') // compile project(path: ':library') } decc { -- Gitee