Merge pull request #18339 from Homebrew/sequoia-sdk

os/mac: bump latest SDK version
This commit is contained in:
Mike McQuaid 2024-09-26 13:13:52 +01:00 committed by GitHub
commit e1f5edbcde
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -520,6 +520,7 @@ esac
# TODO: bump version when new macOS is released or announced and update references in: # TODO: bump version when new macOS is released or announced and update references in:
# - docs/Installation.md # - docs/Installation.md
# - https://github.com/Homebrew/install/blob/HEAD/install.sh # - https://github.com/Homebrew/install/blob/HEAD/install.sh
# - Library/Homebrew/os/mac.rb (latest_sdk_version)
# and, if needed: # and, if needed:
# - MacOSVersion::SYMBOLS # - MacOSVersion::SYMBOLS
HOMEBREW_MACOS_NEWEST_UNSUPPORTED="16" HOMEBREW_MACOS_NEWEST_UNSUPPORTED="16"

View File

@ -55,7 +55,7 @@ module OS
def self.latest_sdk_version def self.latest_sdk_version
# TODO: bump version when new Xcode macOS SDK is released # TODO: bump version when new Xcode macOS SDK is released
# NOTE: We only track the major version of the SDK. # NOTE: We only track the major version of the SDK.
::Version.new("13") ::Version.new("15")
end end
sig { returns(String) } sig { returns(String) }