From 5e2f3bbfbf934845d999d859628169936f2b8933 Mon Sep 17 00:00:00 2001 From: 17351781990 <827990754@qq.com> Date: Thu, 23 Sep 2021 15:36:38 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E6=94=B9=E5=86=85=E5=AE=B9]=EF=BC=9A?= =?UTF-8?q?=E5=8F=91=E5=B8=83=E6=AD=A3=E5=BC=8F=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + CHANGELOG.md | 3 +++ README.md | 6 +++--- build.gradle | 6 +++--- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 37a4eb8..f1f83f4 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ .externalNativeBuild /entry/.preview .cxx +upload.gradle diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d30eb2..ef1fcb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,5 @@ +## 1.0.0 +正式版发布 + ## 0.0.1-SNAPSHOT ohos第一个版本,实现了原库的全部功能 diff --git a/README.md b/README.md index 2381601..fa20398 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 @@ allprojects { 2.在entry模块的build.gradle文件中, ```gradle dependencies { - implementation('com.gitee.chinasoft_ohos:SpeechRecognitionView:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:SpeechRecognitionView:1.0.0') ...... } ``` @@ -88,7 +88,7 @@ CloudTest代码测试无异常 #### 版本迭代 -- 0.0.1-SNAPSHOT +- 1.0.0 #### 版权和许可信息 diff --git a/build.gradle b/build.gradle index 646c44c..75d57c1 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ ohos { compatibleSdkVersion 5 } } - + buildscript { repositories { maven { @@ -19,8 +19,8 @@ buildscript { } } dependencies { - classpath 'com.huawei.ohos:hap:2.4.5.0' - classpath 'com.huawei.ohos:decctest:1.2.4.1' + classpath 'com.huawei.ohos:hap:2.4.5.5' + classpath 'com.huawei.ohos:decctest:1.2.5.1' } } -- Gitee