From e1d8307606339846475fc88def7875a3bd07416e Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Fri, 4 Nov 2022 15:00:04 -0700 Subject: [PATCH 1/4] docs: Bump stable cask OS versions --- docs/Acceptable-Casks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Acceptable-Casks.md b/docs/Acceptable-Casks.md index 9ec01fa975..63d48c4778 100644 --- a/docs/Acceptable-Casks.md +++ b/docs/Acceptable-Casks.md @@ -24,7 +24,7 @@ We maintain separate Taps for different types of binaries. Our nomenclature is: ### Stable Versions -Stable versions live in the main repository at [Homebrew/homebrew-cask](https://github.com/Homebrew/homebrew-cask). They should run on the latest release of macOS or the previous point release (High Sierra and Mojave as of late 2018). +Stable versions live in the main repository at [Homebrew/homebrew-cask](https://github.com/Homebrew/homebrew-cask). They should run on the latest release of macOS or the previous point release (Monterey and Ventura as of late 2022). ### But There Is No Stable Version! From f8923de85f1425ef72d6b54ff2ec7d96208fd785 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Fri, 4 Nov 2022 15:08:28 -0700 Subject: [PATCH 2/4] Add :monterey & :ventura symbols --- docs/Cask-Cookbook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Cask-Cookbook.md b/docs/Cask-Cookbook.md index 23e048ad9b..26fd627423 100644 --- a/docs/Cask-Cookbook.md +++ b/docs/Cask-Cookbook.md @@ -49,7 +49,7 @@ if MacOS.version <= :mojave # symbolic name if MacOS.version <= "10.14" # version string ``` -The available symbols for macOS versions are: `:el_capitan`, `:sierra`, `:high_sierra`, `:mojave`, `:catalina` and `:big_sur`. The corresponding numeric version strings should be given as major releases containing a single dot. +The available symbols for macOS versions are: `:el_capitan`, `:sierra`, `:high_sierra`, `:mojave`, `:catalina`, `:big_sur`, `:monterey`, and `:ventura`. The corresponding numeric version strings should be given as major releases containing a single dot. Note that in the official Homebrew Cask repositories only the symbolic names are allowed. The numeric comparison may only be used for third-party taps. From ea585b1d474ccd2c61353da1cd53ea7c9ad6baee Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Fri, 4 Nov 2022 15:09:34 -0700 Subject: [PATCH 3/4] Add :ventura --- docs/Cask-Cookbook.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/Cask-Cookbook.md b/docs/Cask-Cookbook.md index 26fd627423..5e4df29ca4 100644 --- a/docs/Cask-Cookbook.md +++ b/docs/Cask-Cookbook.md @@ -470,6 +470,7 @@ The available values for macOS releases are: | `:catalina` | `10.15` | `:big_sur` | `11.0` | `:monterey` | `12.0` +| `:ventura` | `13.0` Only major releases are covered (version numbers containing a single dot). The symbol form is used for readability. The following are all valid ways to enumerate the exact macOS release requirements for a Cask: From 2c550684e33267db2dcbbfbda842a33e82d58b0b Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Fri, 4 Nov 2022 18:10:46 -0700 Subject: [PATCH 4/4] Update docs/Cask-Cookbook.md Co-authored-by: Bo Anderson --- docs/Cask-Cookbook.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/Cask-Cookbook.md b/docs/Cask-Cookbook.md index 5e4df29ca4..387095ee5d 100644 --- a/docs/Cask-Cookbook.md +++ b/docs/Cask-Cookbook.md @@ -468,9 +468,9 @@ The available values for macOS releases are: | `:high_sierra` | `10.13` | `:mojave` | `10.14` | `:catalina` | `10.15` -| `:big_sur` | `11.0` -| `:monterey` | `12.0` -| `:ventura` | `13.0` +| `:big_sur` | `11` +| `:monterey` | `12` +| `:ventura` | `13` Only major releases are covered (version numbers containing a single dot). The symbol form is used for readability. The following are all valid ways to enumerate the exact macOS release requirements for a Cask: