From d0e777e29842289a3cd534a09b8f0a4704b29d8c Mon Sep 17 00:00:00 2001 From: Lightbow Date: Tue, 19 Feb 2019 17:03:11 -0500 Subject: [PATCH] Updating podspec to use ~> 4.2 notation for RxSwift, which will allow CocoaPods to install anything from 4.2 and higher up to but not including a potential future 5.0, at which point we'd likely need compatibility changes. This will let clients of RxLifx use a newer version of RxSwift than we happen to specify up until the point where things might break, so long as they follow semantic versioning (#22) --- RxLifx.podspec | 2 +- RxLifxApi.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RxLifx.podspec b/RxLifx.podspec index b6741dc..af9fee8 100644 --- a/RxLifx.podspec +++ b/RxLifx.podspec @@ -18,7 +18,7 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/flowsprenger/RxLifx-Swift.git" } - s.dependency 'RxSwift', '4.2.0' + s.dependency 'RxSwift', '~> 4.2' s.source_files = 'RxLifx/RxLifx/*.{h,swift}' end diff --git a/RxLifxApi.podspec b/RxLifxApi.podspec index d615323..60a1106 100644 --- a/RxLifxApi.podspec +++ b/RxLifxApi.podspec @@ -18,7 +18,7 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/flowsprenger/RxLifx-Swift.git" } - s.dependency 'RxSwift', '4.2.0' + s.dependency 'RxSwift', '~> 4.2' s.dependency 'RxLifx' s.dependency 'LifxDomain'