Skip to content

Commit

Permalink
Version++ - 0.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcharmas committed Jul 23, 2015
1 parent 4352414 commit b78aa32
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change Log
==========

Version 0.7
----------------------------

* Removed ```final``` from methods in ```ReactiveLocationProvider``` to enable mockito mocking.
* Updated dependencies.
* Added support to fetch Place by id.

Version 0.6
----------------------------

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ ReactiveLocation library for Android
Small library that wraps Google Play Services API in brilliant [RxJava](https://github.com/ReactiveX/RxJava)
```Observables``` reducing boilerplate to minimum.

Current stable version - 0.6
Current stable version - 0.7
---------------

**This version works with Google Play Services 7.3.+ and RxJava 1.0.+**
**This version works with Google Play Services 7.5.+ and RxJava 1.0.+**

What can you do with that?
--------------------------
Expand Down Expand Up @@ -200,12 +200,12 @@ along with Google Play Services and RxJava.
```groovy
dependencies {
...
compile 'pl.charmas.android:android-reactive-location:0.6@aar'
compile 'com.google.android.gms:play-services-location:7.3.0'
compile 'io.reactivex:rxjava:1.0.10'
compile 'pl.charmas.android:android-reactive-location:0.7@aar'
compile 'com.google.android.gms:play-services-location:7.5.0'
compile 'io.reactivex:rxjava:1.0.13'
//RxAndroid or NotRxAndroid is not required by library
compile 'io.reactivex:rxandroid:0.24.0'
compile 'io.reactivex:rxandroid:0.25.0'
}
```

Expand All @@ -218,7 +218,7 @@ following dependency:
<dependency>
<groupId>pl.charmas.android</groupId>
<artifactId>android-reactive-location</artifactId>
<version>0.6</version>
<version>0.7</version>
<type>aar</type>
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
classpath 'com.android.tools.build:gradle:1.2.3'
}
}

Expand Down Expand Up @@ -35,4 +35,4 @@ allprojects {
}
}

apply plugin: 'android-reporting'
apply plugin: 'android-reporting'
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_NAME=0.7-SNAPSHOT
VERSION_CODE=8
VERSION_NAME=0.7
VERSION_CODE=9
GROUP=pl.charmas.android


Expand Down

0 comments on commit b78aa32

Please sign in to comment.