Skip to content

Commit a518935

Browse files
authored
Update combine-schedulers and fix implicit Foundation imports. (#1294)
* Update combine-schedulers and fix implicit Foundation imports. * a few more fixes
1 parent 665fb32 commit a518935

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

Examples/CaseStudies/SwiftUICaseStudies/FactClient.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import Combine
22
import ComposableArchitecture
3+
import Foundation
34
import XCTestDynamicOverlay
45

56
struct FactClient {

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let package = Package(
1818
],
1919
dependencies: [
2020
.package(name: "Benchmark", url: "https://github.com/google/swift-benchmark", from: "0.1.0"),
21-
.package(url: "https://github.com/pointfreeco/combine-schedulers", from: "0.7.0"),
21+
.package(url: "https://github.com/pointfreeco/combine-schedulers", from: "0.7.3"),
2222
.package(url: "https://github.com/pointfreeco/swift-case-paths", from: "0.8.0"),
2323
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "0.3.0"),
2424
.package(url: "https://github.com/pointfreeco/swift-identified-collections", from: "0.3.2"),

Sources/ComposableArchitecture/Effects/Cancellation.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import Combine
2+
import Foundation
23

34
extension Effect {
45
/// Turns an effect into one that is capable of being canceled.

Sources/ComposableArchitecture/Effects/Throttling.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import Combine
22
import Dispatch
3+
import Foundation
34

45
extension Effect {
56
/// Throttles an effect so that it only publishes one output per given interval.

0 commit comments

Comments
 (0)