Skip to content

Commit

Permalink
Prepare 1.2.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
patloew committed May 23, 2016
1 parent 7e69479 commit ffd5cff
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Version 1.2.0

* Added `PutDataMap.toObservable()`.
* Deprecated `RxWear.Data.getSingle()`. Use `RxWear.Data.get()` instead.
* Added convenience methods to `RxWear.Data` and `RxWear.Message` to directly filter out DataItems/MessageEvents by path.
* Fixed issue #1, which was caused by Wearable API issue [74204](https://code.google.com/p/android/issues/detail?id=74204)

## Version 1.1.0

* BREAKING CHANGE: The lib now uses Singles instead of Observables if only one item is emitted.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ A basic sample app is available in the `sample` and `wearsample` projects.
The lib is available on jCenter. Add the following to your `build.gradle`:

dependencies {
compile 'com.patloew.rxwear:rxwear:1.1.0'
compile 'com.patloew.rxwear:rxwear:1.2.0'
}

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

group = 'com.patloew.rxwear'
version = '1.1.0'
version = '1.2.0'
project.archivesBaseName = 'rxwear'

android {
Expand All @@ -13,8 +13,8 @@ android {
defaultConfig {
minSdkVersion 9
targetSdkVersion 23
versionCode 2
versionName "1.1.0"
versionCode 3
versionName "1.2.0"
}
buildTypes {
release {
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies {
compile "com.android.support:gridlayout-v7:23.4.0"

compile project(':library')
//compile 'com.patloew.rxwear:rxwear:1.1.0'
//compile 'com.patloew.rxwear:rxwear:1.2.0'

compile 'io.reactivex:rxjava:1.1.5'
compile 'io.reactivex:rxandroid:1.2.0'
Expand Down
2 changes: 1 addition & 1 deletion wearsample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
compile 'com.google.android.gms:play-services-wearable:8.4.0'

compile project(':library')
//compile 'com.patloew.rxwear:rxwear:1.1.0'
//compile 'com.patloew.rxwear:rxwear:1.2.0'

compile 'io.reactivex:rxjava:1.1.5'
compile 'io.reactivex:rxandroid:1.2.0'
Expand Down

0 comments on commit ffd5cff

Please sign in to comment.