File tree 2 files changed +10
-5
lines changed 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
- // swift-tools-version:5.1
1
+ // swift-tools-version:5.2
2
2
3
3
import PackageDescription
4
4
@@ -10,16 +10,21 @@ let package = Package(
10
10
products: [
11
11
. library(
12
12
name: " RxCombine " ,
13
- targets: [ " RxCombine " ] ) ,
13
+ targets: [ " RxCombine " ]
14
+ ) ,
14
15
] ,
15
16
dependencies: [
16
17
. package ( url: " https://github.com/ReactiveX/RxSwift.git " , from: " 6.0.0 " )
17
18
] ,
18
19
targets: [
19
20
. target(
20
21
name: " RxCombine " ,
21
- dependencies: [ " RxSwift " , " RxRelay " ] ,
22
- path: " Sources " ) ,
22
+ dependencies: [
23
+ " RxSwift " ,
24
+ . product( name: " RxRelay " , package : " RxSwift " ) ,
25
+ ] ,
26
+ path: " Sources "
27
+ ) ,
23
28
. testTarget(
24
29
name: " RxCombineTests " ,
25
30
dependencies: [ " RxCombine " ] ,
Original file line number Diff line number Diff line change @@ -23,5 +23,5 @@ Pod::Spec.new do |s|
23
23
s . dependency 'RxSwift' , '~> 6'
24
24
s . dependency 'RxRelay' , '~> 6'
25
25
26
- s . swift_version = '5.1 '
26
+ s . swift_version = '5.2 '
27
27
end
You can’t perform that action at this time.
0 commit comments