Skip to content

[Vertex AI] Removed -beta from pod version #13759

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 3 commits into from
Oct 2, 2024
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
14 changes: 7 additions & 7 deletions FirebaseVertexAI.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = 'FirebaseVertexAI'
s.version = '11.4.0-beta'
s.summary = 'Vertex AI in Firebase - Public Preview'
s.version = '11.4.0'
s.summary = 'Vertex AI in Firebase SDK'

s.description = <<-DESC
[Public Preview] Build AI-powered apps and features with the Gemini API using
the Vertex AI in Firebase SDK.
Build AI-powered apps and features with the Gemini API using the Vertex AI in
Firebase SDK.
DESC

s.homepage = 'https://firebase.google.com'
Expand All @@ -20,7 +20,7 @@ the Vertex AI in Firebase SDK.
s.social_media_url = 'https://twitter.com/Firebase'

ios_deployment_target = '15.0'
osx_deployment_target = '11.0'
osx_deployment_target = '12.0'
tvos_deployment_target = '15.0'
watchos_deployment_target = '8.0'

Expand All @@ -44,8 +44,8 @@ the Vertex AI in Firebase SDK.
s.tvos.framework = 'UIKit'
s.watchos.framework = 'WatchKit'

s.dependency 'FirebaseAppCheckInterop', '~> 11.2'
s.dependency 'FirebaseAuthInterop', '~> 11.2'
s.dependency 'FirebaseAppCheckInterop', '~> 11.4'
s.dependency 'FirebaseAuthInterop', '~> 11.4'
s.dependency 'FirebaseCore', '~> 11.4'
s.dependency 'FirebaseCoreExtension', '~> 11.4'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public let shared = Manifest(
Pod("FirebasePerformance", platforms: ["ios", "tvos"], zip: true),
Pod("FirebaseStorage", zip: true),
Pod("FirebaseMLModelDownloader", isBeta: true, zip: true),
Pod("FirebaseVertexAI", isBeta: true, zip: true),
Pod("FirebaseVertexAI", zip: true),
Pod("Firebase", allowWarnings: true, platforms: ["ios", "tvos", "macos"], zip: true),
]
)
Expand Down
2 changes: 1 addition & 1 deletion ReleaseTooling/Sources/ZipBuilder/Platform.swift
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ enum PlatformMinimum {
/// for the minimum version specified in the podspec.
static func useRecentVersions() {
minimumIOSVersion = "15.0"
minimumMacOSVersion = "11.0"
minimumMacOSVersion = "12.0"
minimumTVOSVersion = "15.0"
minimumWatchOSVersion = "8.0"
}
Expand Down
Loading