Skip to content

Commit

Permalink
RxSwift 6.6 (#212)
Browse files Browse the repository at this point in the history
* RxSwift 6.6
* Disable flag in tests
* Remove redundant specifier
  • Loading branch information
lickel authored Sep 20, 2023
1 parent 235cfc0 commit f02b8ac
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/ReactiveCocoa/ReactiveSwift.git", from: "7.1.1"),
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.2.0"),
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.6.0"),
.package(url: "https://github.com/nicklockwood/SwiftFormat", exact: "0.44.14"),
],
targets: [
Expand Down
4 changes: 4 additions & 0 deletions WorkflowReactiveSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,14 @@ Pod::Spec.new do |s|

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

s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }

s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'WorkflowReactiveSwift/Tests/**/*.swift'
test_spec.framework = 'XCTest'
test_spec.library = 'swiftos'
test_spec.dependency 'WorkflowTesting', "#{s.version}"

test_spec.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'NO' }
end
end
7 changes: 4 additions & 3 deletions WorkflowRxSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,17 @@ Pod::Spec.new do |s|
s.source_files = 'WorkflowRxSwift/Sources/**/*.swift'

s.dependency 'Workflow', "#{s.version}"
s.dependency 'RxSwift', '~> 6.2'
s.dependency 'RxSwift', '~> 6.6'

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

s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'WorkflowRxSwift/Tests/**/*.swift'
test_spec.framework = 'XCTest'
test_spec.library = 'swiftos'
test_spec.dependency 'WorkflowTesting', "#{s.version}"
test_spec.dependency 'WorkflowReactiveSwift', "#{s.version}"

test_spec.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'NO' }
end
end
1 change: 0 additions & 1 deletion WorkflowRxSwiftTesting.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ Pod::Spec.new do |s|
s.dependency 'Workflow', "#{s.version}"
s.dependency 'WorkflowRxSwift', "#{s.version}"
s.dependency 'WorkflowTesting', "#{s.version}"
s.dependency 'RxSwift'

s.framework = 'XCTest'

Expand Down

0 comments on commit f02b8ac

Please sign in to comment.