Adds badges to `README.md`.
This commit is contained in:
parent
f0f48371c5
commit
49a74d9437
13
README.md
13
README.md
|
|
@ -1,14 +1,11 @@
|
|||
<img src="assets/Rx_Logo_M.png" width="36" height="36"> 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) <img src="http://slack.rxswift.org/badge.svg">
|
||||
|
||||
1. [Why](#why)
|
||||
1. [State](#state)
|
||||
1. [Bindings](#bindings)
|
||||
|
|
@ -325,7 +320,7 @@ extension UISearchBar {
|
|||
}
|
||||
|
||||
public var rx_text: Observable<String> {
|
||||
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
|
||||
```
|
||||
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in New Issue