diff --git a/CHANGELOG.md b/CHANGELOG.md index 12da782e6a5b0151aff513521ede87fa3b7d0579..4442be88ff0d8830538cbd119881db1a87bab69f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ +## 1.0.1 +ohos 第三个版本 + * 正式版本 + ## 0.0.2-SNAPSHOT -ohos 第2个版本 +ohos 第二个版本 * 更新sdk6 ## 0.0.1-SNAPSHOT diff --git a/README.md b/README.md index 7189e6a76729e0f74f6e4d290f65b3150ea25ec5..f97da5c1bd5a68a3ab862e0293ace1da0fa16627 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/' } } } @@ -29,7 +29,7 @@ allprojects { 2. 在entry模块下的build.gradle文件中添加依赖。 ``` dependencies { - implementation('com.gitee.chinasoft_ohos:StateButton:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:StateButton:1.0.1') } ``` @@ -98,7 +98,7 @@ CloudTest代码测试无异常 ### 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.1 ### 版权和许可信息 diff --git a/build.gradle b/build.gradle index a4bbee50c84428507c792bf978676f0ff6fe17a8..9d4eb5c5f398e2c6be801e91e3533114eb16e702 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 b0b070043b3b5ae087b1bac582482dae9494961a..bdca8c696f9c65e575d593855cbe75bb740dc9d5 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -17,9 +17,11 @@ ohos { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) - implementation('com.gitee.chinasoft_ohos:StateButton:0.0.2-SNAPSHOT') testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' + + // maven依赖 + implementation('com.gitee.chinasoft_ohos:StateButton:1.0.1') } decc { supportType = ['html', 'xml']