You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+44Lines changed: 44 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,49 @@
1
1
# RxJava Releases #
2
2
3
+
### Version 1.0.7 – Feburary 21st 2015 ([Maven Central](http://search.maven.org/#artifactdetails%7Cio.reactivex%7Crxjava%7C1.0.7%7C)) ###
4
+
5
+
This release includes some bug fixes along with a new operator and performance enhancements.
6
+
7
+
#### Experimental Operator
8
+
9
+
Note that these APIs [may still change or be removed altogether](https://github.com/ReactiveX/RxJava#experimental) since they are marked as `@Experimental`.
10
+
11
+
##### withLatestFrom(Observable, Selector)
12
+
13
+
This allows combining all values from one `Observable` with the latest value from a second `Observable` at each `onNext`.
14
+
15
+
For example:
16
+
17
+
```java
18
+
Observable<Long> a =Observable.interval(1, TimeUnit.SECONDS);
19
+
Observable<Long> b =Observable.interval(250, TimeUnit.MILLISECONDS);
0 commit comments