From 4bccdc0297ccf39fc870908d17e6d95f53e5f497 Mon Sep 17 00:00:00 2001 From: Kris Cieplak Date: Fri, 26 Sep 2025 13:15:23 -0400 Subject: [PATCH] Update dependant packages to match 6.2.1 branch Update the dependant packages to match 6.2.1, so parent dependencies like swift-sourcekit-lsp will not have version errors. --- Package.resolved | 6 +++--- Package.swift | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Package.resolved b/Package.resolved index 03aed2958..b396f624f 100644 --- a/Package.resolved +++ b/Package.resolved @@ -68,7 +68,7 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/swiftlang/swift-docc-symbolkit.git", "state" : { - "branch" : "release/6.2", + "branch" : "release/6.2.1", "revision" : "467084cd380d352abcd128b27927ecdc8cb5bae8" } }, @@ -77,7 +77,7 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/swiftlang/swift-lmdb.git", "state" : { - "branch" : "release/6.2", + "branch" : "release/6.2.1", "revision" : "1ad9a2d80b6fcde498c2242f509bd1be7d667ff8" } }, @@ -86,7 +86,7 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/swiftlang/swift-markdown.git", "state" : { - "branch" : "release/6.2", + "branch" : "release/6.2.1", "revision" : "3be4e1a09cef425602f11bdb4b4de252e4badd11" } }, diff --git a/Package.swift b/Package.swift index 5c5ac49c7..bed4eb49b 100644 --- a/Package.swift +++ b/Package.swift @@ -134,10 +134,10 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil { // Building standalone, so fetch all dependencies remotely. package.dependencies += [ .package(url: "https://github.com/apple/swift-nio.git", from: "2.53.0"), - .package(url: "https://github.com/swiftlang/swift-markdown.git", branch: "release/6.2"), - .package(url: "https://github.com/swiftlang/swift-lmdb.git", branch: "release/6.2"), + .package(url: "https://github.com/swiftlang/swift-markdown.git", branch: "release/6.2.1"), + .package(url: "https://github.com/swiftlang/swift-lmdb.git", branch: "release/6.2.1"), .package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.2"), - .package(url: "https://github.com/swiftlang/swift-docc-symbolkit.git", branch: "release/6.2"), + .package(url: "https://github.com/swiftlang/swift-docc-symbolkit.git", branch: "release/6.2.1"), .package(url: "https://github.com/apple/swift-crypto.git", from: "3.0.0"), .package(url: "https://github.com/swiftlang/swift-docc-plugin.git", from: "1.2.0"), ]