Skip to content

Commit f02b8ac

Browse files
authored
RxSwift 6.6 (#212)
* RxSwift 6.6 * Disable flag in tests * Remove redundant specifier
1 parent 235cfc0 commit f02b8ac

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ let package = Package(
9292
],
9393
dependencies: [
9494
.package(url: "https://github.com/ReactiveCocoa/ReactiveSwift.git", from: "7.1.1"),
95-
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.2.0"),
95+
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.6.0"),
9696
.package(url: "https://github.com/nicklockwood/SwiftFormat", exact: "0.44.14"),
9797
],
9898
targets: [

WorkflowReactiveSwift.podspec

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,14 @@ Pod::Spec.new do |s|
2020

2121
s.dependency 'Workflow', "#{s.version}"
2222

23+
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
24+
2325
s.test_spec 'Tests' do |test_spec|
2426
test_spec.source_files = 'WorkflowReactiveSwift/Tests/**/*.swift'
2527
test_spec.framework = 'XCTest'
2628
test_spec.library = 'swiftos'
2729
test_spec.dependency 'WorkflowTesting', "#{s.version}"
30+
31+
test_spec.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'NO' }
2832
end
2933
end

WorkflowRxSwift.podspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,17 @@ Pod::Spec.new do |s|
1919
s.source_files = 'WorkflowRxSwift/Sources/**/*.swift'
2020

2121
s.dependency 'Workflow', "#{s.version}"
22-
s.dependency 'RxSwift', '~> 6.2'
22+
s.dependency 'RxSwift', '~> 6.6'
2323

24-
# https://github.com/ReactiveX/RxSwift/pull/2475
25-
# s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
24+
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
2625

2726
s.test_spec 'Tests' do |test_spec|
2827
test_spec.source_files = 'WorkflowRxSwift/Tests/**/*.swift'
2928
test_spec.framework = 'XCTest'
3029
test_spec.library = 'swiftos'
3130
test_spec.dependency 'WorkflowTesting', "#{s.version}"
3231
test_spec.dependency 'WorkflowReactiveSwift', "#{s.version}"
32+
33+
test_spec.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'NO' }
3334
end
3435
end

WorkflowRxSwiftTesting.podspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Pod::Spec.new do |s|
2121
s.dependency 'Workflow', "#{s.version}"
2222
s.dependency 'WorkflowRxSwift', "#{s.version}"
2323
s.dependency 'WorkflowTesting', "#{s.version}"
24-
s.dependency 'RxSwift'
2524

2625
s.framework = 'XCTest'
2726

0 commit comments

Comments
 (0)