diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b958e2f9b9385486660c85dbb78239da5aaf8e1..8e4bbec5eb0abfd9ed3e7c42be218136f468598e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.0.0 +发布正式版本1.0.0 + ## 0.0.1-SNAPSHOT ohos 第一个版本,完整实现了原库的全部 api diff --git a/README.md b/README.md index 406e8b78c06bb9b6ef75b0a5eddff7d559d7ab1b..23384040ee7c44d1e0ae5046aba247a97d810871 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ - 功能: 是堆叠标签组件,适合快速完成需要堆叠标签的场景,例如“搜索历史”、“猜你喜欢”等功能。 - 项目移植状态: 主功能完成 - 调用差异: 无 -- 开发版本: sdk6,DevEco Studio 2.2 Beta1 +- 开发版本: sdk6,DevEco Studio 2.2 Beta2 - 基线版本:master分支 @@ -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/' } } } @@ -30,11 +30,11 @@ allprojects { 2.在entry模块的build.gradle文件中, ``` dependencies { - implementation('com.gitee.chinasoft_ohos:StackLabel:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:StackLabel:1.0.0') ...... } ``` -在sdk6,DevEco Studio 2.2 Beta1下项目可直接运行 +在sdk6,DevEco Studio 2.2 Beta2下项目可直接运行 如无法运行,删除项目.gradle,.idea,build,gradle,build.gradle文件, 并依据自己的版本创建新项目,将新项目的对应文件复制到根目录下 @@ -233,7 +233,7 @@ CloudTest代码测试无异常 当前版本demo功能与原组件基本无差异 ## 版本迭代 -- 0.0.1-SNAPSHOT +- 1.0.0 ## 版权和许可信息 ``` diff --git a/build.gradle b/build.gradle index 7ea90ed163b9fb1a616bf89be77750cae661c0cd..1c4d1ae13316a8fa74c740901f81255f8abd83bf 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ apply plugin: 'com.huawei.ohos.app' ohos { - compileSdkVersion 6 + compileSdkVersion 5 defaultConfig { compatibleSdkVersion 5 } @@ -16,7 +16,7 @@ buildscript { 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() } @@ -35,7 +35,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 6ced1e8cd9f1e313ef7c6548e8e072aba27f9173..c5307f72e83f74776ba6bfc6937442a774bf99a7 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -1,7 +1,7 @@ apply plugin: 'com.huawei.ohos.hap' apply plugin: 'com.huawei.ohos.decctest' ohos { - compileSdkVersion 6 + compileSdkVersion 5 defaultConfig { compatibleSdkVersion 5 }