Skip to content

Commit

Permalink
Update Podspecs to 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
freak4pc authored and kzaher committed Apr 7, 2019
1 parent 06f9a71 commit 809bd46
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
5 changes: 3 additions & 2 deletions RxBlocking.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = "RxBlocking" s.name = "RxBlocking"
s.version = "4.5.0" s.version = "5.0.0"
s.summary = "RxSwift Blocking operatos" s.summary = "RxSwift Blocking operatos"
s.description = <<-DESC s.description = <<-DESC
Set of blocking operators for RxSwift. These operators are mostly intended for unit/integration tests Set of blocking operators for RxSwift. These operators are mostly intended for unit/integration tests
Expand All @@ -25,5 +25,6 @@ Waiting for observable sequence to complete before exiting command line applicat
s.source_files = 'RxBlocking/**/*.swift', 'Platform/**/*.swift' s.source_files = 'RxBlocking/**/*.swift', 'Platform/**/*.swift'
s.exclude_files = 'RxBlocking/Platform/**/*.swift' s.exclude_files = 'RxBlocking/Platform/**/*.swift'


s.dependency 'RxSwift', '~> 4.4', '>= 4.4.2' s.dependency 'RxSwift', '~> 5'
s.swift_version = '5.0'
end end
5 changes: 3 additions & 2 deletions RxCocoa.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = "RxCocoa" s.name = "RxCocoa"
s.version = "4.5.0" s.version = "5.0.0"
s.summary = "RxSwift Cocoa extensions" s.summary = "RxSwift Cocoa extensions"
s.description = <<-DESC s.description = <<-DESC
* UI extensions * UI extensions
Expand All @@ -22,5 +22,6 @@ Pod::Spec.new do |s|
s.source_files = 'RxCocoa/**/*.{swift,h,m}', 'Platform/**/*.swift' s.source_files = 'RxCocoa/**/*.{swift,h,m}', 'Platform/**/*.swift'
s.exclude_files = 'RxCocoa/Platform/**/*.swift', 'Platform/AtomicInt.swift' s.exclude_files = 'RxCocoa/Platform/**/*.swift', 'Platform/AtomicInt.swift'


s.dependency 'RxSwift', '~> 4.4', '>= 4.4.2' s.dependency 'RxSwift', '~> 5'
s.swift_version = '5.0'
end end
4 changes: 3 additions & 1 deletion RxSwift.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = "RxSwift" s.name = "RxSwift"
s.version = "4.5.0" s.version = "5.0.0"
s.summary = "RxSwift is a Swift implementation of Reactive Extensions" s.summary = "RxSwift is a Swift implementation of Reactive Extensions"
s.description = <<-DESC s.description = <<-DESC
This is a Swift port of [ReactiveX.io](https://github.com/ReactiveX) This is a Swift port of [ReactiveX.io](https://github.com/ReactiveX)
Expand Down Expand Up @@ -34,4 +34,6 @@ gitDiff().grep("bug").less // sequences of swift objects


s.source_files = 'RxSwift/**/*.swift', 'Platform/**/*.swift' s.source_files = 'RxSwift/**/*.swift', 'Platform/**/*.swift'
s.exclude_files = 'RxSwift/Platform/**/*.swift' s.exclude_files = 'RxSwift/Platform/**/*.swift'

s.swift_version = '5.0'
end end
5 changes: 3 additions & 2 deletions RxTest.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = "RxTest" s.name = "RxTest"
s.version = "4.5.0" s.version = "5.0.0"
s.summary = "RxSwift Testing extensions" s.summary = "RxSwift Testing extensions"
s.description = <<-DESC s.description = <<-DESC
Unit testing extensions for RxSwift. This library contains mock schedulers, observables, and observers Unit testing extensions for RxSwift. This library contains mock schedulers, observables, and observers
Expand Down Expand Up @@ -56,7 +56,8 @@ func testMap() {


s.framework = 'XCTest' s.framework = 'XCTest'


s.dependency 'RxSwift', '~> 4.4', '>= 4.4.2' s.dependency 'RxSwift', '~> 5'
s.swift_version = '5.0'


s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' } s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
end end

0 comments on commit 809bd46

Please sign in to comment.