Updates CHANGELOG.md with PrimitiveSequence changes.

This commit is contained in:
Krunoslav Zaher 2017-03-12 17:46:19 +01:00
parent 9a7841c605
commit 2f0a21546b

View File

@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
## Master
* Adds `Single`, `Maybe`, `Completeable` units inspired by RxJava (operators):
* `create`
* `deferred`
* `just`
* `error`
* `never`
* `delaySubscription`
* `delay`
* `do`
* `filter`
* `map`
* `flatMap`
* `observeOn`
* `subscribeOn`
* `catchError`
* `retry`
* `retryWhen`
* `zip`
* Adds `asSingle()` operator on `ObservableType`.
* Adds `asMaybe()` operator on `ObservableType`.
* Adds `asCompleteable()` operator on `ObservableType`.
* Adds `AsyncSubject` implementation
## Anomalies