Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

macOS Big Sur #9054

Merged
merged 2 commits into from Nov 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Library/Homebrew/os/mac.rb
Expand Up @@ -41,21 +41,21 @@ def full_version=(version)

def latest_sdk_version
# TODO: bump version when new Xcode macOS SDK is released
Version.new "10.15"
Version.new "11.0"
end

def latest_stable_version
# TODO: bump version when new macOS is released and also update
# references in docs/Installation.md and
# https://github.com/Homebrew/install/blob/HEAD/install.sh
Version.new "10.15"
Version.new "11.0"
end

def outdated_release?
# TODO: bump version when new macOS is released and also update
# references in docs/Installation.md and
# https://github.com/Homebrew/install/blob/HEAD/install.sh
version < "10.13"
version < "10.14"
end

def prerelease?
Expand Down
6 changes: 3 additions & 3 deletions Library/Homebrew/os/mac/xcode.rb
Expand Up @@ -22,8 +22,8 @@ module Xcode
def latest_version
latest_stable = "12.2"
case MacOS.version
when "11.0" then "12.2"
when "10.15" then latest_stable
when "11.0" then latest_stable
when "10.15" then "12.2"
when "10.14" then "11.3.1"
when "10.13" then "10.1"
when "10.12" then "9.2"
Expand All @@ -45,7 +45,7 @@ def latest_version
sig { returns(String) }
def minimum_version
case MacOS.version
when "11.0" then "12.0"
when "11.0" then "12.2"
when "10.15" then "11.0"
when "10.14" then "10.2"
when "10.13" then "9.0"
Expand Down