File tree Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
10
## Version 1.1.0
4
11
5
12
* BREAKING CHANGE: The lib now uses Singles instead of Observables if only one item is emitted.
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ A basic sample app is available in the `sample` and `wearsample` projects.
79
79
The lib is available on jCenter. Add the following to your ` build.gradle ` :
80
80
81
81
dependencies {
82
- compile 'com.patloew.rxwear:rxwear:1.1 .0'
82
+ compile 'com.patloew.rxwear:rxwear:1.2 .0'
83
83
}
84
84
85
85
# Credits
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apply plugin: 'com.jfrog.bintray'
3
3
apply plugin : ' com.github.dcendents.android-maven'
4
4
5
5
group = ' com.patloew.rxwear'
6
- version = ' 1.1 .0'
6
+ version = ' 1.2 .0'
7
7
project. archivesBaseName = ' rxwear'
8
8
9
9
android {
@@ -13,8 +13,8 @@ android {
13
13
defaultConfig {
14
14
minSdkVersion 9
15
15
targetSdkVersion 23
16
- versionCode 2
17
- versionName " 1.1 .0"
16
+ versionCode 3
17
+ versionName " 1.2 .0"
18
18
}
19
19
buildTypes {
20
20
release {
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ dependencies {
38
38
compile " com.android.support:gridlayout-v7:23.4.0"
39
39
40
40
compile project(' :library' )
41
- // compile 'com.patloew.rxwear:rxwear:1.1 .0'
41
+ // compile 'com.patloew.rxwear:rxwear:1.2 .0'
42
42
43
43
compile ' io.reactivex:rxjava:1.1.5'
44
44
compile ' io.reactivex:rxandroid:1.2.0'
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ dependencies {
35
35
compile ' com.google.android.gms:play-services-wearable:8.4.0'
36
36
37
37
compile project(' :library' )
38
- // compile 'com.patloew.rxwear:rxwear:1.1 .0'
38
+ // compile 'com.patloew.rxwear:rxwear:1.2 .0'
39
39
40
40
compile ' io.reactivex:rxjava:1.1.5'
41
41
compile ' io.reactivex:rxandroid:1.2.0'
You can’t perform that action at this time.
0 commit comments