diff --git a/README.md b/README.md index e4282b22..e4ba3826 100644 --- a/README.md +++ b/README.md @@ -467,9 +467,10 @@ Open Rx.xcworkspace, choose `RxExample` and hit run. This method will build ever # Podfile use_frameworks! -pod 'RxSwift', '~> 2.0.0-beta' -pod 'RxCocoa', '~> 2.0.0-beta' -pod 'RxBlocking', '~> 2.0.0-beta' +pod 'RxSwift', '~> 2.0.0-rc' +pod 'RxCocoa', '~> 2.0.0-rc' +pod 'RxBlocking', '~> 2.0.0-rc' +pod 'RxTests', '~> 2.0.0-rc' ``` type in `Podfile` directory @@ -485,7 +486,7 @@ $ pod install Add this to `Cartfile` ``` -github "ReactiveX/RxSwift" "2.0.0-beta.4" +github "ReactiveX/RxSwift" "2.0.0-rc.0" ``` ``` diff --git a/RxBlocking.podspec b/RxBlocking.podspec index c61dd51e..52cff671 100644 --- a/RxBlocking.podspec +++ b/RxBlocking.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RxBlocking" - s.version = "2.0.0-beta.4" + s.version = "2.0.0-rc.0" s.summary = "RxSwift Blocking operatos" s.description = <<-DESC Set of blocking operators for RxSwift. These operators are mostly intended for unit/integration tests @@ -24,5 +24,5 @@ Waiting for observable sequence to complete before exiting command line applicat s.source_files = 'RxBlocking/**/*.swift' - s.dependency 'RxSwift', '~> 2.0.0-beta' + s.dependency 'RxSwift', '~> 2.0.0-rc' end diff --git a/RxCocoa.podspec b/RxCocoa.podspec index a570fc33..6d8fda3e 100644 --- a/RxCocoa.podspec +++ b/RxCocoa.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RxCocoa" - s.version = "2.0.0-beta.4" + s.version = "2.0.0-rc.0" s.summary = "RxSwift Cocoa extensions" s.description = <<-DESC * UI extensions @@ -25,5 +25,5 @@ Pod::Spec.new do |s| s.watchos.source_files = 'RxCocoa/iOS/**/*.swift' s.tvos.source_files = 'RxCocoa/iOS/**/*.swift' - s.dependency 'RxSwift', '~> 2.0.0-beta' + s.dependency 'RxSwift', '~> 2.0.0-rc' end diff --git a/RxSwift.podspec b/RxSwift.podspec index 1f37fdd8..c6a89679 100644 --- a/RxSwift.podspec +++ b/RxSwift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RxSwift" - s.version = "2.0.0-beta.4" + s.version = "2.0.0-rc.0" s.summary = "Microsoft Reactive Extensions (Rx) for Swift and iOS/OSX platform" s.description = <<-DESC This is a Swift port of [ReactiveX.io](https://github.com/ReactiveX) diff --git a/RxTests.podspec b/RxTests.podspec index 904e49f1..c2a420aa 100644 --- a/RxTests.podspec +++ b/RxTests.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RxTests" - s.version = "2.0.0-beta.4" + s.version = "2.0.0-rc.0" s.summary = "RxSwift Testing extensions" s.description = <<-DESC Unit testing extensions for RxSwift. This library contains mock schedulers, observables, and observers @@ -55,5 +55,5 @@ func testMap() { s.framework = 'XCTest' - s.dependency 'RxSwift', '~> 2.0.0-beta' + s.dependency 'RxSwift', '~> 2.0.0-rc' end