From de613db4b4797aa99ac32d8cbf295a4dd3c866d3 Mon Sep 17 00:00:00 2001 From: xiongwengong Date: Thu, 30 Sep 2021 11:01:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=AD=A3=E5=BC=8F=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ README.md | 6 +++--- build.gradle | 6 +++--- entry/build.gradle | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a04368528..63b971f39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 1.0.0 +ohos 第三个版本,正式版 ## 0.0.2-SNAPSHOT ohos 第二个版本,更新sdk6 ## 0.0.1-SNAPSHOT diff --git a/README.md b/README.md index 7424bafe7..f73f3df7a 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,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 { 2.在entry模块的build.gradle文件中, ``` dependencies { - implementation('com.gitee.chinasoft_ohos:BoofCV:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:BoofCV:1.0.0') ...... } ``` @@ -58,4 +58,4 @@ CloudTest代码测试无异常 #### 版本迭代 -- 0.0.2-SNAPSHOT \ No newline at end of file +- 1.0.0 \ No newline at end of file diff --git a/build.gradle b/build.gradle index a4bbee50c..c50ec5947 100644 --- a/build.gradle +++ b/build.gradle @@ -19,15 +19,15 @@ buildscript { jcenter() } dependencies { - classpath 'com.huawei.ohos:hap:2.4.5.0' - classpath 'com.huawei.ohos:decctest:1.2.4.1' + classpath 'com.huawei.ohos:hap:3.0.3.2' + classpath 'com.huawei.ohos:decctest:1.2.6.0' } } 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 8e846126d..5c8ed8def 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -21,7 +21,7 @@ dependencies { testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' - implementation('com.gitee.chinasoft_ohos:BoofCV:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:BoofCV:1.0.0') // implementation project(path: ':boofcv') } decc { -- Gitee