Skip to content
New issue

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

Drop remaining 5.9 support. #288

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 5.9
// swift-tools-version: 5.10

//
// This source file is part of the Swift.org open source project
Expand Down
2 changes: 1 addition & 1 deletion Sources/Testing/Testing.docc/DefiningTests.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ a test is unable to run due to limited availability:

```swift
@available(macOS 11.0, *)
@available(swift, introduced: 5.9, message: "Requires Swift 5.9 features to run")
@available(swift, introduced: 8.0, message: "Requires Swift 8.0 features to run")
grynspan marked this conversation as resolved.
Show resolved Hide resolved
@Test func foodTruckExists() { ... }
```

Expand Down
4 changes: 2 additions & 2 deletions Sources/Testing/Testing.docc/TemporaryGettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ To learn how to contribute to the testing library itself, see

### Downloading a development toolchain

A recent **development snapshot** toolchain is required to use the testing
library. Visit [swift.org](https://www.swift.org/download/#trunk-development-main)
A recent **development snapshot** toolchain is required to use all of the
features of the testing library. Visit [swift.org](https://www.swift.org/download/#trunk-development-main)
to download and install a toolchain from the section titled
**Snapshots — Trunk Development (main)**.

Expand Down