Merge pull request #14096 from p-linnane/fix-version-ref

docs: Bump various OS versions
This commit is contained in:
Bo Anderson 2022-11-05 01:57:22 +00:00 committed by GitHub
commit 31d4da3380
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

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

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.
@ -468,8 +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`
| `: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: