Skip to content

Commit

Permalink
[Release Tooling] Bump min. versions (#13317)
Browse files Browse the repository at this point in the history
  • Loading branch information
ncooke3 authored Jul 19, 2024
1 parent 3dea1e2 commit 0e80163
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ReleaseTooling/Sources/ZipBuilder/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -100,19 +100,19 @@ struct ZipBuilderTool: ParsableCommand {
// MARK: - Platform Arguments

/// The minimum iOS Version to build for.
@Option(default: "11.0", help: ArgumentHelp("The minimum supported iOS version."))
@Option(default: "12.0", help: ArgumentHelp("The minimum supported iOS version."))
var minimumIOSVersion: String

/// The minimum macOS Version to build for.
@Option(default: "10.13", help: ArgumentHelp("The minimum supported macOS version."))
@Option(default: "10.15", help: ArgumentHelp("The minimum supported macOS version."))
var minimumMacOSVersion: String

/// The minimum tvOS Version to build for.
@Option(default: "12.0", help: ArgumentHelp("The minimum supported tvOS version."))
@Option(default: "13.0", help: ArgumentHelp("The minimum supported tvOS version."))
var minimumTVOSVersion: String

/// The minimum watchOS Version to build for.
@Option(default: "6.0", help: ArgumentHelp("The minimum supported watchOS version."))
@Option(default: "7.0", help: ArgumentHelp("The minimum supported watchOS version."))
var minimumWatchOSVersion: String

/// The list of platforms to build for.
Expand Down

0 comments on commit 0e80163

Please sign in to comment.