We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Swift 6 Migration
We should enable the Swift 6 language mode for Swift-DocC, and resolve any failing compiler safety checks.
We can do so incrementally by:
Swift 6 is enabled per-target, so there are multiple targets we potentially need to migrate:
With the Swift 6 language mode, the compiler can now guarantee that concurrent programs are free of data races: https://www.swift.org/migration/documentation/migrationguide/
As Swift-DocC uses concurrency in some areas of its code, it is important to ensure that these areas are data-race-free.
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Name
Swift 6 Migration
Description
We should enable the Swift 6 language mode for Swift-DocC, and resolve any failing compiler safety checks.
We can do so incrementally by:
Swift 6 is enabled per-target, so there are multiple targets we potentially need to migrate:
Motivation
With the Swift 6 language mode, the compiler can now guarantee that concurrent programs are free of data races:
https://www.swift.org/migration/documentation/migrationguide/
Importance
As Swift-DocC uses concurrency in some areas of its code, it is important to ensure that these areas are data-race-free.
Alternatives Considered
No response
The text was updated successfully, but these errors were encountered: