We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77d9c43 commit 0b2ea11Copy full SHA for 0b2ea11
Sources/UnidocDB/Packages/PackageDatabase.Editions.swift
@@ -274,14 +274,15 @@ extension PackageDatabase.Editions
274
extension PackageDatabase.Editions
275
{
276
/// Removes all editions that lack a commit hash, unless it has the exact name
277
- /// `swift-5.8.1-RELEASE`.
+ /// `swift-5.8.1-RELEASE` or `swift-5.9-RELEASE`.
278
public
279
func _lint(with session:Mongo.Session) async throws -> Int
280
281
try await self.deleteAll(with: session)
282
283
$0[PackageEdition[.sha1]] = .init { $0[.exists] = false }
284
$0[PackageEdition[.name]] = .init { $0[.ne] = "swift-5.8.1-RELEASE" }
285
+ $0[PackageEdition[.name]] = .init { $0[.ne] = "swift-5.9-RELEASE" }
286
}
287
288
0 commit comments