From fd9d31c4382ede60ff3c5a74c211ba11b431e3f8 Mon Sep 17 00:00:00 2001 From: GuilhE Date: Thu, 17 Sep 2020 12:37:33 +0100 Subject: [PATCH] minor update --- CONTRIBUTING.md | 4 ++-- README.md | 4 ++-- deploy-bintray.gradle.kts | 6 +++--- settings.gradle.kts | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 683a953..526cd10 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,9 +2,9 @@ In an effort to keep the library small and stable, please keep contributions limited to bug fixes, documentation improvements, and test improvements. -If you have a new feature idea, please [create an enhancement request](https://github.com/GuilhE/android-circular-progress-view/issues/new?assignees=&labels=enhancement&template=feature_request.md&title=) so it can be discussed or build it in an external library. +If you have a new feature idea, please [create an enhancement request](https://github.com/GuilhE/CircularProgressView/issues/new?assignees=&labels=enhancement&template=feature_request.md&title=) so it can be discussed or build it in an external library. -If you’ve found a bug, please [create a bug report](https://github.com/GuilhE/android-circular-progress-view/issues/new?assignees=GuilhE&labels=bug&template=bug_report.md&title=) and contribute with a failing test case so we can study and fix it. +If you’ve found a bug, please [create a bug report](https://github.com/GuilhE/CircularProgressView/issues/new?assignees=GuilhE&labels=bug&template=bug_report.md&title=) and contribute with a failing test case so we can study and fix it. If you would like to contribute code you can do so through GitHub by forking the repository and sending a pull request. diff --git a/README.md b/README.md index 856d94e..3b6da9d 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A fancy CircularProgressView. ## Installation -CircularProgressView is distributed through [Maven Central](https://search.maven.org/artifact/com.github.guilhe/circular-progress-view), [Jcenter](https://bintray.com/gdelgado/android/circular-progress-view) and [Jitpack](https://jitpack.io/#GuilhE/android-circular-progress-view). +CircularProgressView is distributed through [Maven Central](https://search.maven.org/artifact/com.github.guilhe/circular-progress-view), [Jcenter](https://bintray.com/gdelgado/android/circular-progress-view) and [Jitpack](https://jitpack.io/#GuilhE/CircularProgressView). ```groovy implementation 'com.github.guilhe:circular-progress-view:${LATEST_VERSION}' @@ -118,7 +118,7 @@ _Animation last update on April, 2019_ - [com.android.support:support-annotations](https://developer.android.com/topic/libraries/support-library/packages.html#annotations) ## Bugs and Feedback -For bugs, questions and discussions please use the [Github Issues](https://github.com/GuilhE/android-circular-progress-view/issues). +For bugs, questions and discussions please use the [Github Issues](https://github.com/GuilhE/CircularProgressView/issues). ## LICENSE Copyright (c) 2017-present, GuilhE. diff --git a/deploy-bintray.gradle.kts b/deploy-bintray.gradle.kts index 57ce1e2..5374ac0 100644 --- a/deploy-bintray.gradle.kts +++ b/deploy-bintray.gradle.kts @@ -84,10 +84,10 @@ configure { artifactId = artifact version = libraryVersion - artifact(tasks.named("sourcesJar")) - artifact(tasks.named("dokkaJar")) + artifact(tasks.getByName("sourcesJar")) + artifact(tasks.getByName("dokkaJar")) artifact("$buildDir/outputs/aar/${artifactId}-release.aar") { - builtBy(tasks.named("assemble")) + builtBy(tasks.getByName("assemble")) } pom { diff --git a/settings.gradle.kts b/settings.gradle.kts index 3ed6959..c77dd2d 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,2 +1,2 @@ -rootProject.name = "android-circular-progress-view" +rootProject.name = "CircularProgressView" include("sample", "circular-progress-view") \ No newline at end of file