diff --git a/RxBlocking.podspec b/RxBlocking.podspec index 09a242a1b..f0c13e3ab 100644 --- a/RxBlocking.podspec +++ b/RxBlocking.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RxBlocking" - s.version = "4.5.0" + s.version = "5.0.0" s.summary = "RxSwift Blocking operatos" s.description = <<-DESC Set of blocking operators for RxSwift. These operators are mostly intended for unit/integration tests @@ -25,5 +25,6 @@ Waiting for observable sequence to complete before exiting command line applicat s.source_files = 'RxBlocking/**/*.swift', '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 diff --git a/RxCocoa.podspec b/RxCocoa.podspec index a8c6eaa9c..f9c551f5f 100644 --- a/RxCocoa.podspec +++ b/RxCocoa.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RxCocoa" - s.version = "4.5.0" + s.version = "5.0.0" s.summary = "RxSwift Cocoa extensions" s.description = <<-DESC * UI extensions @@ -22,5 +22,6 @@ Pod::Spec.new do |s| s.source_files = 'RxCocoa/**/*.{swift,h,m}', 'Platform/**/*.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 diff --git a/RxSwift.podspec b/RxSwift.podspec index 39a0b6d9c..4323f70e0 100644 --- a/RxSwift.podspec +++ b/RxSwift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RxSwift" - s.version = "4.5.0" + s.version = "5.0.0" s.summary = "RxSwift is a Swift implementation of Reactive Extensions" s.description = <<-DESC This is a Swift port of [ReactiveX.io](https://github.com/ReactiveX) @@ -34,4 +34,6 @@ gitDiff().grep("bug").less // sequences of swift objects s.source_files = 'RxSwift/**/*.swift', 'Platform/**/*.swift' s.exclude_files = 'RxSwift/Platform/**/*.swift' + + s.swift_version = '5.0' end diff --git a/RxTest.podspec b/RxTest.podspec index 4c34b819c..7ed66c670 100644 --- a/RxTest.podspec +++ b/RxTest.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RxTest" - s.version = "4.5.0" + s.version = "5.0.0" s.summary = "RxSwift Testing extensions" s.description = <<-DESC Unit testing extensions for RxSwift. This library contains mock schedulers, observables, and observers @@ -56,7 +56,8 @@ func testMap() { 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' } end