From f8923de85f1425ef72d6b54ff2ec7d96208fd785 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Fri, 4 Nov 2022 15:08:28 -0700 Subject: [PATCH] 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.