diff --git a/CHANGELOG.md b/CHANGELOG.md index 125a85d16e7eb5bbba1fa3151ae98eafc92c79fb..0e1b23f4da6286d3967785fc3a6113f2e496f01b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.0.0 +发布1.0.0正式版本 + ## 0.0.2-SNAPSHOT 修改findbugs问题 diff --git a/README.md b/README.md index 711c749fc1c96d55ea61fbce22c6f369bdd5590b..5df464a16ba87ca13da73b3ab6dcdc2ad40cc01e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ - 基线版本:Releases v1.1.5 ## 项目演示 - +![输入图片说明](https://gitee.com/chinasoft_ohos/ActivityRouter/raw/master/img/demo1.gif "demo1.gif") ## 安装教程 @@ -20,7 +20,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -31,11 +31,11 @@ allprojects { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) - implementation('com.gitee.chinasoft_ohos:annotation:0.0.2-SNAPSHOT') - implementation('com.gitee.chinasoft_ohos:app_module:0.0.2-SNAPSHOT') - implementation('com.gitee.chinasoft_ohos:compiler:0.0.2-SNAPSHOT') - annotationProcessor('com.gitee.chinasoft_ohos:compiler:0.0.2-SNAPSHOT') - implementation('com.gitee.chinasoft_ohos:activityrouter:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ActivityRouter-annotation:1.0.0') + implementation('com.gitee.chinasoft_ohos:ActivityRouter-app_module:1.0.0') + implementation('com.gitee.chinasoft_ohos:ActivityRouter-compiler:1.0.0') + annotationProcessor('com.gitee.chinasoft_ohos:ActivityRouter-compiler:1.0.0') + implementation('com.gitee.chinasoft_ohos:ActivityRouter-activityrouter:1.0.0') …… } ``` @@ -148,7 +148,7 @@ CloudTest代码测试无异常 当前版本demo功能与原组件基本无差异 ## 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.0 ## 版权和许可信息 - Apache License 2.0 \ No newline at end of file diff --git a/build.gradle b/build.gradle index d01a82686f7db0529eb805710e4c3872235cb599..bfb6f3d757d28ebaf4ab4d7ad04a80372a5191b4 100644 --- a/build.gradle +++ b/build.gradle @@ -20,7 +20,7 @@ buildscript { url 'https://maven.aliyun.com/nexus/content/groups/public/' } maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } jcenter() } @@ -44,7 +44,7 @@ allprojects { url 'https://maven.aliyun.com/nexus/content/groups/public/' } maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } jcenter() } diff --git a/img/demo1.gif b/img/demo1.gif index fce29590cb3d32dfabf77cdba98b0cdfa19dca87..e2945a8bef6f0efb9c0e68da6b9ea85b78913658 100644 Binary files a/img/demo1.gif and b/img/demo1.gif differ