Skip to content

Commit

Permalink
Update min Swift version to 5.6 and make platform versions consistent (
Browse files Browse the repository at this point in the history
…#763)

Update minimum Swift version to 5.6 and make platform versions consistent.
  • Loading branch information
gwynne committed Apr 14, 2023
1 parent 8d60150 commit 4b4d8bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 3 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
// swift-tools-version:5.5.2
// swift-tools-version:5.6
import PackageDescription

let package = Package(
name: "fluent",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.watchOS(.v6)
.watchOS(.v6),
.tvOS(.v13),
],
products: [
.library(name: "Fluent", targets: ["Fluent"]),
Expand Down
3 changes: 0 additions & 3 deletions Tests/FluentTests/CredentialTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ final class CredentialTests: XCTestCase {
}
}

#if compiler(>=5.5) && canImport(_Concurrency)
@available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
func testAsyncCredentialsAuthentication() async throws {
let app = Application(.testing)
defer { app.shutdown() }
Expand Down Expand Up @@ -123,7 +121,6 @@ final class CredentialTests: XCTestCase {
}
}
}
#endif
}

final class CredentialsUser: Model {
Expand Down

0 comments on commit 4b4d8bf

Please sign in to comment.