Skip to content

Commit

Permalink
Added CHANGELOG entry for multi-drive and multi-emit
Browse files Browse the repository at this point in the history
  • Loading branch information
freak4pc committed Dec 21, 2019
1 parent fcd8317 commit c70cfd8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
All notable changes to this project will be documented in this file.

---
## 6.0.0-beta.1

**Note**: RxSwift 6 and above has a minimum target of Swift 5.1 (Xcode 11)

* Remove `UIWebView` Reactive Extensions due to Apple hard deprecation. #2062
* Minimum Swift version is now 5.1. #2077
* Remove scoped imports in favor of library evolution. #2103
* Add `Driver.drive()` and `Signal.emit()` for multiple observers/relays. #1962
* Add `compactMap` to `SharedSequence`, `Single` and `Maybe`. #1978
* Add `UITextField.isSecureTextEntry` binder. #1968
* Remove "custom" `Result` in favor of `Foundation.Resault`. #2006
* Fix compilation error in `SharedSequence.createUnsafe`. #2014

## [5.0.1](https://github.com/ReactiveX/RxSwift/releases/tag/5.0.1)

* Reverts Carthage integration from using static to dynamic libraries. #1960
Expand Down
2 changes: 1 addition & 1 deletion RxCocoa/Common/Observable+Bind.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ extension ObservableType {
*/
public func bind<Observer: ObserverType>(to observers: Observer...) -> Disposable where Observer.Element == Element {
return self.subscribe { event in
observers.forEach { $0.on(event) }
observers.forEach { $0.on(event) }
}
}

Expand Down

0 comments on commit c70cfd8

Please sign in to comment.