From db5fbfbe0fb7bc9b87755c0a9b4a7e37f6871a8f Mon Sep 17 00:00:00 2001 From: 251309-lirui Date: Thu, 29 Jul 2021 15:24:30 +0800 Subject: [PATCH] =?UTF-8?q?=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 | 4 ++++ README.md | 6 +++--- build.gradle | 2 +- entry/build.gradle | 2 +- imagesteganographylibrary/build.gradle | 1 - 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03584ed..055e4b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.1 +ohos 第三个版本 +- 正式版本 + ## 0.0.2-SNAPSHOT ohos 第二个版本,更新SDK6 ## 0.0.1-SNAPSHOT diff --git a/README.md b/README.md index ad55516..d50395f 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -34,7 +34,7 @@ 2.在entry模块的build.gradle文件中, ``` dependencies { - implementation 'com.gitee.chinasoft_ohos:ImageSteganography:0.0.2-SNAPSHOT' + implementation 'com.gitee.chinasoft_ohos:ImageSteganography:1.0.1' ...... } ``` @@ -183,7 +183,7 @@ CloudTest代码测试无异常 ### 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.1 ### 版权和许可信息 diff --git a/build.gradle b/build.gradle index 67389e3..333573b 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 e7307fa..a21b766 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -20,7 +20,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:imagesteganographylibrary:0.0.2-SNAPSHOT' + implementation 'com.gitee.chinasoft_ohos:imagesteganographylibrary:1.0.1' //implementation project(path: ':imagesteganographylibrary') } decc { diff --git a/imagesteganographylibrary/build.gradle b/imagesteganographylibrary/build.gradle index 7e1e475..a57a8a8 100644 --- a/imagesteganographylibrary/build.gradle +++ b/imagesteganographylibrary/build.gradle @@ -14,7 +14,6 @@ ohos { } } - dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) testImplementation 'junit:junit:4.13' -- Gitee