Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ if (_SwiftFoundationICU_SourceDIR)
else()
FetchContent_Declare(SwiftFoundationICU
GIT_REPOSITORY https://github.com/apple/swift-foundation-icu.git
GIT_TAG 0.0.9)
GIT_TAG release/6.2)
endif()

if (_SwiftFoundation_SourceDIR)
Expand All @@ -98,7 +98,7 @@ if (_SwiftFoundation_SourceDIR)
else()
FetchContent_Declare(SwiftFoundation
GIT_REPOSITORY https://github.com/apple/swift-foundation.git
GIT_TAG main)
GIT_TAG release/6.2)
endif()
FetchContent_MakeAvailable(SwiftFoundationICU SwiftFoundation)

Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,10 @@ if let useLocalDepsEnv = Context.environment["SWIFTCI_USE_LOCAL_DEPS"] {
[
.package(
url: "https://github.com/apple/swift-foundation-icu",
branch: "main"),
branch: "release/6.2"),
.package(
url: "https://github.com/apple/swift-foundation",
branch: "main")
branch: "release/6.2")
]
}

Expand Down