Skip to content

Commit

Permalink
Update library version 0.1.0 -> 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hluhovskyi committed Jan 24, 2018
1 parent 98dd5b0 commit e9bdefe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Button which is visible while user holds it. Main use case is controlling audio
Add library as dependency to your `build.gradle`.

```
compile 'com.dewarder:holdingbutton:0.1.0'
compile 'com.dewarder:holdingbutton:0.1.1'
```

## How to use
Expand Down
11 changes: 7 additions & 4 deletions holdingbutton/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

ext {
artifactVersion = '0.1.0'
artifactVersion = '0.1.1'
artifactName = 'holdingbutton'
siteUrl = 'https://github.com/dewarder/HoldingButton'
gitUrl = 'https://github.com/dewarder/HoldingButton.git'
Expand Down Expand Up @@ -92,9 +92,12 @@ artifacts {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())

def bintrayUser = hasProperty('bintrayUser') ? bintrayUser : ""
def bintrayKey = hasProperty('bintrayKey') ? bintrayKey : ""

bintray {
user = properties['bintray.user']
key = properties['bintray.apikey']
user = bintrayUser
key = bintrayKey
configurations = ['archives']
publish = true
pkg {
Expand All @@ -105,7 +108,7 @@ bintray {
vcsUrl = gitUrl
version {
name = artifactVersion
desc = 'Add RTL support. Upgrade dependencies versions.'
desc = 'Add VectorDrawable support. Add setIcon method for Drawable'
released = new Date()
vcsTag = "$artifactVersion"
}
Expand Down

0 comments on commit e9bdefe

Please sign in to comment.