Skip to content

Commit

Permalink
[Vertex AI] Removed -beta from pod version (#13759)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewheard authored Oct 2, 2024
1 parent c421661 commit 82febdd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
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

0 comments on commit 82febdd

Please sign in to comment.