Skip to content

Commit

Permalink
Upgrade to v_1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Tankery Chen committed May 13, 2018
1 parent bdfdd09 commit cd7a221
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ I make this library run on Android Studio (Gradle), and fix & add more features
### Gradle
``` Gradle
dependencies {
compile 'me.tankery.lib:circularSeekBar:1.1.4'
compile 'me.tankery.lib:circularSeekBar:1.1.5'
}
```

Expand Down
10 changes: 10 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Releasing

1. Update `version` to the new version `X.Y.Z` in `circularSeekBar/build.gradle`.
2. Add change log of this version in `circularSeekBar/build.gradle`.
3. Update version name in `README.md`
4. Execute `git commit -m "Upgrade to v_X.Y.Z"` (where X.Y.Z is the new version).
5. Execute `./gradlew clean build install bintrayUpload`.
6. Execute `git tag v_X.Y.Z"` (where X.Y.Z is the new version)
7. Execute `git push && git push --tags`

4 changes: 3 additions & 1 deletion circularSeekBar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
// This is the library version used when deploying the artifact
version = "1.1.4"
version = "1.1.5"
/**
* v1.1.0:
* add some Java object APIs.
Expand All @@ -15,6 +15,8 @@ version = "1.1.4"
* v1.1.4:
* - Upgrade gradle and sdk version
* - Fix Progress bar missing when progress is 100 on Android O.
* v1.1.5:
* - Fix progress is hard to set to 0 or 100 when touch.
*/

android {
Expand Down

0 comments on commit cd7a221

Please sign in to comment.