Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
GuilhE committed Sep 17, 2020
1 parent 080077e commit fd9d31c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}'
Expand Down Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions deploy-bintray.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ configure<PublishingExtension> {
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 {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rootProject.name = "android-circular-progress-view"
rootProject.name = "CircularProgressView"
include("sample", "circular-progress-view")

0 comments on commit fd9d31c

Please sign in to comment.