Skip to content

Commit 82febdd

Browse files
authored
[Vertex AI] Removed -beta from pod version (#13759)
1 parent c421661 commit 82febdd

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

FirebaseVertexAI.podspec

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseVertexAI'
3-
s.version = '11.4.0-beta'
4-
s.summary = 'Vertex AI in Firebase - Public Preview'
3+
s.version = '11.4.0'
4+
s.summary = 'Vertex AI in Firebase SDK'
55

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

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

2222
ios_deployment_target = '15.0'
23-
osx_deployment_target = '11.0'
23+
osx_deployment_target = '12.0'
2424
tvos_deployment_target = '15.0'
2525
watchos_deployment_target = '8.0'
2626

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

47-
s.dependency 'FirebaseAppCheckInterop', '~> 11.2'
48-
s.dependency 'FirebaseAuthInterop', '~> 11.2'
47+
s.dependency 'FirebaseAppCheckInterop', '~> 11.4'
48+
s.dependency 'FirebaseAuthInterop', '~> 11.4'
4949
s.dependency 'FirebaseCore', '~> 11.4'
5050
s.dependency 'FirebaseCoreExtension', '~> 11.4'
5151

ReleaseTooling/Sources/FirebaseManifest/FirebaseManifest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public let shared = Manifest(
5353
Pod("FirebasePerformance", platforms: ["ios", "tvos"], zip: true),
5454
Pod("FirebaseStorage", zip: true),
5555
Pod("FirebaseMLModelDownloader", isBeta: true, zip: true),
56-
Pod("FirebaseVertexAI", isBeta: true, zip: true),
56+
Pod("FirebaseVertexAI", zip: true),
5757
Pod("Firebase", allowWarnings: true, platforms: ["ios", "tvos", "macos"], zip: true),
5858
]
5959
)

ReleaseTooling/Sources/ZipBuilder/Platform.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ enum PlatformMinimum {
6969
/// for the minimum version specified in the podspec.
7070
static func useRecentVersions() {
7171
minimumIOSVersion = "15.0"
72-
minimumMacOSVersion = "11.0"
72+
minimumMacOSVersion = "12.0"
7373
minimumTVOSVersion = "15.0"
7474
minimumWatchOSVersion = "8.0"
7575
}

0 commit comments

Comments
 (0)