From 0967c3e549d6f7fccff6412df1bca45efed101e4 Mon Sep 17 00:00:00 2001 From: FX Coudert Date: Thu, 20 Sep 2018 12:49:34 +0200 Subject: [PATCH] os/mac: support Mojave, drop El Capitan --- 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 e2b85330e1..f936e31756 100644 --- a/Library/Homebrew/os/mac.rb +++ b/Library/Homebrew/os/mac.rb @@ -31,21 +31,21 @@ module OS def latest_sdk_version # TODO: bump version when new Xcode macOS SDK is released - Version.new "10.13" + Version.new "10.14" 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/master/install - Version.new "10.13" + Version.new "10.14" 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/master/install - version < "10.11" + version < "10.12" end def prerelease?