Skip to content

Commit

Permalink
Updating podspec to use ~> 4.2 notation for RxSwift, which will allow…
Browse files Browse the repository at this point in the history
… 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)
  • Loading branch information
lightbow authored and flowsprenger committed Feb 19, 2019
1 parent c05c154 commit d0e777e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RxLifx.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion RxLifxApi.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down

0 comments on commit d0e777e

Please sign in to comment.