From 0967c3e549d6f7fccff6412df1bca45efed101e4 Mon Sep 17 00:00:00 2001 From: FX Coudert Date: Thu, 20 Sep 2018 12:49:34 +0200 Subject: [PATCH 1/2] 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? From 1a381206c6f5fe2c9ac4843e20a189b654a40d70 Mon Sep 17 00:00:00 2001 From: FX Coudert Date: Thu, 20 Sep 2018 12:50:09 +0200 Subject: [PATCH 2/2] docs/Installation: support Sierra or higher --- docs/Installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Installation.md b/docs/Installation.md index f186b546e1..84f858f268 100644 --- a/docs/Installation.md +++ b/docs/Installation.md @@ -11,7 +11,7 @@ it does it too. And you have to confirm everything it will do before it starts. ## Requirements * An Intel CPU [1](#1) -* OS X 10.11 or higher [2](#2) +* macOS 10.12 or higher [2](#2) * Command Line Tools (CLT) for Xcode: `xcode-select --install`, [developer.apple.com/downloads](https://developer.apple.com/downloads) or [Xcode](https://itunes.apple.com/us/app/xcode/id497799835) [3](#3) @@ -51,7 +51,7 @@ you can assume you will have trouble if you don’t conform. Also, you can find PowerPC and Tiger branches from other users in the fork network. See [Interesting Taps and Forks](Interesting-Taps-and-Forks.md). -2 10.11 or higher is recommended. 10.5–10.10 are +2 10.12 or higher is recommended. 10.5–10.11 are supported on a best-effort basis. For 10.4 see [Tigerbrew](https://github.com/mistydemeo/tigerbrew).