Has there been anything done lately that might affect how nightly toolchain builds can be used from in Xcode?
I created (from Xcode) a new Executable Package. This is basically just a very vanilla template, but I hack the header on package.swift
:
// swift-tools-version: 5.10
When I install swift-5.10-DEVELOPMENT-SNAPSHOT-2024-02-14-a
and swift-DEVELOPMENT-SNAPSHOT-2024-02-14-a
(which should map to 5.11
)… I no longer can build from Xcode:
package 'myexecutable' is using Swift tools version 5.10.0 but the installed version is 5.9.0
Is this legit? Should there be any reason why installing those toolchains and selecting them from Xcode should fail to build a package that requires 5.10?