Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# RxScala Releases

## Version 0.26.2 - TODO ([Maven Central](http://search.maven.org/#search%7Cga%7C1%7C%22rxscala%22%20AND%20g%3A%22io.reactivex%22))

This release upgrades RxJava to 1.1.6 and adds the new experimental `ErrorDelayingObservable` class.

### What is the new `ErrorDelayingObservable` class?

`ErrorDelayingObservable` contains a variety of operators that support delaying errors. Sometimes when you compose multiple
`Observable`s together (e.g., `flatMap`, `concat`), you may want to refrain from propagating error notifications until all of
the `Observable`s have finished emitting items. In such cases, you can call `Observable.delayError` to get an `ErrorDelayingObservable`
and use the `ErrorDelayingObservable`'s methods to compose your `Observable`s. Search for `delayError` in
[RxScalaDemo.scala](examples/src/test/scala/examples/RxScalaDemo.scala) for examples.

### Pull Requests

* [Pull 193] (https://github.com/ReactiveX/RxScala/pull/193) Reimplement tail, to and toMultimap
* [Pull 194] (https://github.com/ReactiveX/RxScala/pull/194) Bump to RxJava 1.1.5
* [Pull 196] (https://github.com/ReactiveX/RxScala/pull/196) Deprecate Observable.create
* [Pull 197] (https://github.com/ReactiveX/RxScala/pull/197) Bump to RxJava 1.1.6

Artifacts: [Maven Central](http://search.maven.org/#search%7Cga%7C1%7C%22rxscala%22%20AND%20g%3A%22io.reactivex%22)

## Version 0.26.1 - April 14th 2016 ([Maven Central](http://search.maven.org/#search%7Cga%7C1%7C%22rxscala%22%20AND%20g%3A%22io.reactivex%22))

This release upgrades RxJava to 1.1.1 and add Scala 2.12 support. Now you can use RxScala with Scala 2.12.0-M4.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ you should use the corresponding version of RxJava as the following table:

| RxScala version | Compatible RxJava version |
| ------------------- | ------------------------- |
| 0.26.2 | 1.1.6+ |
| 0.26.1 | 1.1.1+ |
| 0.26.0 | 1.1.0+ |
| 0.25.1 | 1.0.17+ |
Expand Down