@@ -24,7 +24,7 @@ import Swift
2424// .. Main Executor ............................................................
2525
2626/// A Dispatch-based main executor.
27- @available ( StdlibDeploymentTarget 6 . 2 , * )
27+ @available ( StdlibDeploymentTarget 6 . 3 , * )
2828class DispatchMainExecutor : RunLoopExecutor , SchedulingExecutor ,
2929 @unchecked Sendable {
3030 var threaded = false
@@ -57,7 +57,7 @@ class DispatchMainExecutor: RunLoopExecutor, SchedulingExecutor,
5757 }
5858}
5959
60- @available ( StdlibDeploymentTarget 6 . 2 , * )
60+ @available ( StdlibDeploymentTarget 6 . 3 , * )
6161extension DispatchMainExecutor : SerialExecutor {
6262
6363 public func enqueue( _ job: consuming ExecutorJob ) {
@@ -71,13 +71,13 @@ extension DispatchMainExecutor: SerialExecutor {
7171 }
7272}
7373
74- @available ( StdlibDeploymentTarget 6 . 2 , * )
74+ @available ( StdlibDeploymentTarget 6 . 3 , * )
7575extension DispatchMainExecutor : MainExecutor { }
7676
7777// .. Task Executor ............................................................
7878
7979/// A Dispatch-based `TaskExecutor`
80- @available ( StdlibDeploymentTarget 6 . 2 , * )
80+ @available ( StdlibDeploymentTarget 6 . 3 , * )
8181class DispatchGlobalTaskExecutor : TaskExecutor , SchedulingExecutor ,
8282 @unchecked Sendable {
8383 public init ( ) { }
@@ -148,7 +148,7 @@ fileprivate func durationComponents<C: Clock>(for duration: C.Duration, clock: C
148148 fatalError ( " unknown clock in Dispatch Executor " )
149149}
150150
151- @available ( StdlibDeploymentTarget 6 . 2 , * )
151+ @available ( StdlibDeploymentTarget 6 . 3 , * )
152152fileprivate func _dispatchEnqueue< C: Clock , E: Executor > (
153153 _ job: consuming ExecutorJob ,
154154 at instant: C . Instant ,
0 commit comments