Skip to content

Commit

Permalink
Updated RxSwift dependency to 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanbruel committed Feb 3, 2016
1 parent 43fa5fe commit a249252
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "ReactiveX/RxSwift" ~> 2.0
github "ReactiveX/RxSwift" ~> 2.1
4 changes: 2 additions & 2 deletions NSObject+Rx.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "NSObject+Rx"
s.version = "1.2.0"
s.version = "1.2.1"
s.summary = "Handy RxSwift extensions on NSObject."
s.description = <<-DESC
Right now, we just have a `rx_disposeBag` property, but we're open to PRs!
Expand All @@ -18,5 +18,5 @@ Pod::Spec.new do |s|
s.source = { :git => "https://github.com/RxSwiftCommunity/NSObject-Rx.git", :tag => s.version }
s.source_files = "*.swift"
s.frameworks = "Foundation"
s.dependency "RxSwift", '~> 2.0'
s.dependency "RxSwift", '~> 2.1'
end
8 changes: 4 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You're actually not the only one; it has been typed many, many times.

[![Search screenshot showing many, many results.](assets/screenshot.png)](https://github.com/search?q=let+disposeBag+%3D+DisposeBag%28%29&type=Code&utf8=✓)

Instead of adding a new property to every object, use this library to add it for you, to any subclass of `NSObject`.
Instead of adding a new property to every object, use this library to add it for you, to any subclass of `NSObject`.

```swift
thing
Expand All @@ -34,10 +34,10 @@ Installing

####CocoaPods

This works with RxSwift version 2, which is still prerelease, so you've gotta be fancy with your podfile.
This works with RxSwift version 2, which is still prerelease, so you've gotta be fancy with your podfile.

```ruby
pod 'RxSwift', '~> 2.0.0-beta'
pod 'RxSwift', '~> 2.1'
pod 'NSObject+Rx'
```

Expand All @@ -47,7 +47,7 @@ And that'll be 👌

Add to `Cartfile`:
```
github "ReactiveX/RxSwift" ~> 2.0
github "ReactiveX/RxSwift" ~> 2.1
github "RxSwiftCommunity/NSObject-Rx" ~> 1.3.0
```
Add frameworks to your project (no need to "copy items if needed")
Expand Down

0 comments on commit a249252

Please sign in to comment.