Merge pull request #13980 from Bo98/ventura-xcode-14.1

os/mac/xcode: require Xcode 14.1 on Ventura
This commit is contained in:
Bo Anderson 2022-10-07 20:03:39 +01:00 committed by GitHub
commit 3a57d0904b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ module OS
def latest_version(macos: MacOS.version)
latest_stable = "13.4"
case macos
when "13" then "14.0"
when "13" then "14.1"
when "12" then latest_stable
when "11" then "13.2.1"
when "10.15" then "12.4"
@ -46,7 +46,7 @@ module OS
sig { returns(String) }
def minimum_version
case MacOS.version
when "13" then "14.0"
when "13" then "14.1"
when "12" then "13.1"
when "11" then "12.2"
when "10.15" then "11.0"
@ -245,8 +245,8 @@ module OS
when "12.0.0" then "12.4"
when "12.0.5" then "12.5.1"
when "13.0.0" then "13.2.1"
when "14.0.0" then "14.0"
else "13.4"
when "13.1.6" then "13.4.1"
else "14.0.1"
end
end
@ -343,7 +343,7 @@ module OS
sig { returns(String) }
def latest_clang_version
case MacOS.version
when "13" then "1400.0.17.3.1"
when "13" then "1400.0.29.201"
when "12" then "1316.0.21.2.5"
when "11" then "1300.0.29.30"
when "10.15" then "1200.0.32.29"