diff --git a/README.md b/README.md
index bec4f702..0be2b759 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,11 @@
RxSwift: ReactiveX for Swift
======================================
-[](https://travis-ci.org/ReactiveX/RxSwift)
+[](https://travis-ci.org/ReactiveX/RxSwift)  
+ [](http://slack.rxswift.org) Hang out with us on [rxswift.slack.com](http://slack.rxswift.org)
Xcode 7 Swift 2.1 required
-**This README.md describes RxSwift 2.0.0**
-
-**You can find RxSwift 1.9 for Swift 1.2 [here](https://github.com/ReactiveX/RxSwift/tree/rxswift-1.0).**
-
### Change Log (from 1.9 version)
* Removes deprecated APIs
@@ -84,8 +81,6 @@ RxSwift
└-Rx.xcworkspace - workspace that contains all of the projects hooked up
```
-Hang out with us on [rxswift.slack.com](http://slack.rxswift.org)
-
1. [Why](#why)
1. [State](#state)
1. [Bindings](#bindings)
@@ -325,7 +320,7 @@ extension UISearchBar {
}
public var rx_text: Observable {
- return defer { [weak self] in
+ return Observable.deferred { [weak self] in
let text = self?.text ?? ""
return self?.rx_delegate.observe("searchBar:textDidChange:") ?? empty()
@@ -482,7 +477,7 @@ $ pod install
Add this to `Cartfile`
```
-github "ReactiveX/RxSwift" ~> 2.0
+github "ReactiveX/RxSwift" ~> 2.0
```
```