Skip to content

Commit

Permalink
Merge pull request #7705 from Bo98/xcode-11.5
Browse files Browse the repository at this point in the history
os/mac/xcode: support Xcode 11.5
  • Loading branch information
Bo98 committed Jun 20, 2020
2 parents f951052 + eb3eb20 commit 8c21e8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Library/Homebrew/os/mac/xcode.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ module Xcode
# CI systems have been updated.
# This may be a beta version for a beta macOS.
def latest_version
latest = "11.4.1"
latest = "11.5"
case MacOS.version
when "10.15" then "11.4.1"
when "10.15" then latest
when "10.14" then "11.3.1"
when "10.13" then "10.1"
when "10.12" then "9.2"
Expand Down Expand Up @@ -173,7 +173,7 @@ def detect_version_from_clang_version
# installed CLT version. This is useful as they are packaged
# simultaneously so workarounds need to apply to both based on their
# comparable version.
latest = "11.4.1"
latest = "11.5"
case (DevelopmentTools.clang_version.to_f * 10).to_i
when 110 then latest
when 100 then "10.3"
Expand Down

0 comments on commit 8c21e8b

Please sign in to comment.