Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions FirebaseCore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Firebase 9.0.0
- [changed] Firebase now requires at least Xcode 13.2.1.
- [added] The zip and Carthage distibutions now include the Swift extension frameworks. (#7819)
- [changed] **Breaking change**: Update the minimum supported versions for the zip and Carthage
distributions to iOS 11.0, tvOS 11.0 and macOS 10.13. (#9633)

# Firebase 8.10.0
- [fixed] Fixed platform availability checks in Swift Package Manager that may prevent code
Expand Down
6 changes: 3 additions & 3 deletions ReleaseTooling/Sources/ZipBuilder/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,15 @@ struct ZipBuilderTool: ParsableCommand {
// MARK: - Platform Arguments

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

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

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

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