Skip to content

Commit

Permalink
Prepare 1.0.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
patloew committed Nov 18, 2016
1 parent 8ca99db commit 17d6038
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## Version 1.0.1

* Add consumer ProGuard rules. (#7, #8 – thanks Evisceration)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ A basic sample app is available in the `sample` project.
The lib is available on jCenter. Add the following to your `build.gradle`:

dependencies {
compile 'com.patloew.rxlocation:rxlocation:1.0.0'
compile 'com.patloew.rxlocation:rxlocation:1.0.1'
}

# Testing
Expand Down
8 changes: 4 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'com.jfrog.bintray'
apply plugin: 'com.github.dcendents.android-maven'

group = 'com.patloew.rxlocation'
version = '1.0.0'
version = '1.0.1'
project.archivesBaseName = 'rxlocation'

android {
Expand All @@ -15,8 +15,8 @@ android {
defaultConfig {
minSdkVersion 9
targetSdkVersion 25
versionCode 1
versionName "1.0.0"
versionCode 2
versionName "1.0.1"
}
buildTypes {
release {
Expand All @@ -43,7 +43,7 @@ retrolambda {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'io.reactivex.rxjava2:rxjava:2.0.0'
compile 'io.reactivex.rxjava2:rxjava:2.0.1'
compile 'com.google.android.gms:play-services-location:9.8.0'

testCompile 'junit:junit:4.12'
Expand Down
12 changes: 6 additions & 6 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ android {
}
buildTypes {
release {
minifyEnabled false
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
Expand All @@ -37,14 +37,14 @@ retrolambda {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.0.0'
compile "com.android.support:design:25.0.0"
compile 'com.android.support:appcompat-v7:25.0.1'
compile "com.android.support:design:25.0.1"

compile project(':library')
//compile 'com.patloew.rxlocation:rxlocation:1.0.0'
//compile 'com.patloew.rxlocation:rxlocation:1.0.1'

compile 'io.reactivex.rxjava2:rxandroid:2.0.0'
compile 'io.reactivex.rxjava2:rxjava:2.0.0'
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
compile 'io.reactivex.rxjava2:rxjava:2.0.1'

compile 'com.google.android.gms:play-services-location:9.8.0'

Expand Down

0 comments on commit 17d6038

Please sign in to comment.