You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,8 @@ SwiftNIO | Minimum Swift Version
86
86
`2.60.0 ..< 2.65.0` | 5.7
87
87
`2.65.0 ..< 2.76.0` | 5.8
88
88
`2.76.0 ..< 2.83.0` | 5.9
89
-
`2.83.0 ...` | 5.10
89
+
`2.83.0 ..< 2.87.0` | 5.10
90
+
`2.87.0 ... ` | 6.0
90
91
91
92
### SwiftNIO 1
92
93
SwiftNIO 1 is considered end of life - it is strongly recommended that you move to a newer version. The Core NIO team does not actively work on this version. No new features will be added to this version but PRs which fix bugs or security vulnerabilities will be accepted until the end of May 2022.
/// Initialise a ``NIOLoopBoundBox`` by sending a value, validly callable off `eventLoop`.
148
143
///
149
144
/// Contrary to ``init(_:eventLoop:)``, this method can be called off `eventLoop` because `value` is moved into the box and can no longer be accessed outside the box.
150
145
/// So we don't need to protect `value` itself, we just need to protect the ``NIOLoopBoundBox`` against mutations which we do because the ``value``
151
146
/// accessors are checking that we're on `eventLoop`.
Copy file name to clipboardExpand all lines: Sources/NIOCrashTester/CrashTests+EventLoop.swift
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -180,7 +180,7 @@ struct EventLoopCrashTests {
180
180
NIOSingletons.groupLoopCountSuggestion =-1
181
181
}
182
182
183
-
#if compiler(>=5.9) && swift(<6.2) // We only support Concurrency executor take-over on those Swift versions, as versions greater than that have not been properly tested.
183
+
#if swift(<6.2) // We only support Concurrency executor take-over on those Swift versions, as versions greater than that have not been properly tested.
0 commit comments