diff --git a/CHANGELOG.md b/CHANGELOG.md index 47407dc6870fae5e98e1d2a962af06493f421d6e..9367edd9edb2be2647dd9adfc3c7ac5669cd8759 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ -## 0.0.1-SNAPSHOT -ohos 第一个版本 -* 实现了原库主功能 - +## 1.0.0 +* 正式版发布 ## 0.0.2-SNAPSHOT ohos 第二个版本 * fix bugs +## 0.0.1-SNAPSHOT +ohos 第一个版本 +* 实现了原库主功能 diff --git a/README.md b/README.md index efd66a8e19986fc991c08328369e6e9cc9a124f0..31db8a9b9833fa45c08825f56fbabe4e23f59166 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,7 @@ - 开发版本:sdk6,DevEco Studio 2.2 Beta1 - 基线版本:Release v1.0.0 #### 效果演示 - - +![输入图片说明](https://images.gitee.com/uploads/images/2021/0809/155309_0fa9e388_8864752.gif "guideview.gif") #### 安装教程 1.在项目根目录下的build.gradle文件中, @@ -20,7 +19,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -29,7 +28,7 @@ allprojects { ``` dependencies { - implementation('com.gitee.chinasoft_ohos:GuideView:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:GuideView:1.0.0') ...... } ``` @@ -110,11 +109,12 @@ CloudTest代码测试无异常 ``` ## 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.0 ## 版权和许可信息 ``` +- Apache Licence Copyright 2016 binIoter Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/entry/build.gradle b/entry/build.gradle index b3ca89fead060fefa64daab7ec108f7b56dcfaa9..20ddfa64484d3dd3a6a05908a4cf13e6e4ba01c6 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -14,6 +14,6 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' implementation project(':guideview') - implementation('com.gitee.chinasoft_ohos:lottie:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:GuideView_lottie:0.0.1-SNAPSHOT') ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' }