Release 2.0.0-rc.0

This commit is contained in:
Krunoslav Zaher 2015-12-21 03:29:03 +01:00
parent 135de0f5fa
commit 8d0f514b6d
5 changed files with 12 additions and 11 deletions

View File

@ -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"
```
```

View File

@ -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

View File

@ -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

View File

@ -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)

View File

@ -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