Skip to content

Commit ffd5cff

Browse files
committed
Prepare 1.2.0 release.
1 parent 7e69479 commit ffd5cff

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

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

512
* BREAKING CHANGE: The lib now uses Singles instead of Observables if only one item is emitted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ A basic sample app is available in the `sample` and `wearsample` projects.
7979
The lib is available on jCenter. Add the following to your `build.gradle`:
8080

8181
dependencies {
82-
compile 'com.patloew.rxwear:rxwear:1.1.0'
82+
compile 'com.patloew.rxwear:rxwear:1.2.0'
8383
}
8484

8585
# Credits

library/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.jfrog.bintray'
33
apply plugin: 'com.github.dcendents.android-maven'
44

55
group = 'com.patloew.rxwear'
6-
version = '1.1.0'
6+
version = '1.2.0'
77
project.archivesBaseName = 'rxwear'
88

99
android {
@@ -13,8 +13,8 @@ android {
1313
defaultConfig {
1414
minSdkVersion 9
1515
targetSdkVersion 23
16-
versionCode 2
17-
versionName "1.1.0"
16+
versionCode 3
17+
versionName "1.2.0"
1818
}
1919
buildTypes {
2020
release {

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies {
3838
compile "com.android.support:gridlayout-v7:23.4.0"
3939

4040
compile project(':library')
41-
//compile 'com.patloew.rxwear:rxwear:1.1.0'
41+
//compile 'com.patloew.rxwear:rxwear:1.2.0'
4242

4343
compile 'io.reactivex:rxjava:1.1.5'
4444
compile 'io.reactivex:rxandroid:1.2.0'

wearsample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies {
3535
compile 'com.google.android.gms:play-services-wearable:8.4.0'
3636

3737
compile project(':library')
38-
//compile 'com.patloew.rxwear:rxwear:1.1.0'
38+
//compile 'com.patloew.rxwear:rxwear:1.2.0'
3939

4040
compile 'io.reactivex:rxjava:1.1.5'
4141
compile 'io.reactivex:rxandroid:1.2.0'

0 commit comments

Comments
 (0)