From b6c18230cf4a100a24ad87e159d732cf9e96ab9b Mon Sep 17 00:00:00 2001 From: Francois-Xavier Coudert Date: Thu, 5 Nov 2020 23:38:25 +0100 Subject: [PATCH] macOS Big Sur is released --- Library/Homebrew/os/mac.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/os/mac.rb b/Library/Homebrew/os/mac.rb index 8f6a58aaa6..6c20bad598 100644 --- a/Library/Homebrew/os/mac.rb +++ b/Library/Homebrew/os/mac.rb @@ -41,21 +41,21 @@ module OS 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?