Skip to content

Commit

Permalink
Merge pull request #2 from gordoneliel/master
Browse files Browse the repository at this point in the history
update carthage, spm & cocoapods to RxSwift 5
  • Loading branch information
krezzoid authored Jul 7, 2020
2 parents 5db26b2 + 4034133 commit 92a9f31
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "ReactiveX/RxSwift" ~> 4.1
github "ReactiveX/RxSwift" ~> 5.0
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "4.0.0")),
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.0.0")),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand Down
8 changes: 4 additions & 4 deletions RxContacts.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = "RxContacts"
s.version = "1.0.2"
s.version = "1.0.3"
s.summary = "RxSwift extensions for Contacts framework."

s.homepage = "https://github.com/RxSwiftCommunity/RxContacts"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Satish Babariya" => "[email protected]" }

s.cocoapods_version = '>= 1.4.0'
s.swift_version = '4.0'
s.swift_version = '5.0'

s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.12"
Expand All @@ -19,7 +19,7 @@ Pod::Spec.new do |s|
s.framework = "Foundation" ,"Contacts"

s.static_framework = true
s.dependency 'RxSwift', '~> 4'
s.dependency 'RxCocoa', '~> 4'
s.dependency 'RxSwift', '~> 5'
s.dependency 'RxCocoa', '~> 5'

end

0 comments on commit 92a9f31

Please sign in to comment.