Add :monterey & :ventura symbols

This commit is contained in:
Patrick Linnane 2022-11-04 15:08:28 -07:00
parent e1d8307606
commit f8923de85f
No known key found for this signature in database
GPG Key ID: 9F26181A1866DA0D

View File

@ -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.