Skip to content

Commit db089ac

Browse files
committed
Keep FirebaseCore and FirebaseCoreInternal pod versions aligned
1 parent 7a10b3b commit db089ac

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

FirebaseCore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Firebase Core includes FIRApp and FIROptions which provide central configuration
5353
# Remember to also update version in `cmake/external/GoogleUtilities.cmake`
5454
s.dependency 'GoogleUtilities/Environment', '~> 8.0'
5555
s.dependency 'GoogleUtilities/Logger', '~> 8.0'
56-
s.dependency 'FirebaseCoreInternal', '~> 11.0'
56+
s.dependency 'FirebaseCoreInternal', '11.5'
5757

5858
s.pod_target_xcconfig = {
5959
'GCC_C_LANGUAGE_STANDARD' => 'c99',

ReleaseTooling/Sources/FirebaseReleaser/InitializeRelease.swift

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,11 @@ enum InitializeRelease {
5151
} else {
5252
updatePodspecVersion(pod: pod, version: version, path: path)
5353

54-
// Pods depending on GoogleAppMeasurement and FirebaseFirestoreInternal specs
55-
// should pin the dependency to the new version.
56-
if pod.name.hasPrefix("GoogleAppMeasurement") || pod.name == "FirebaseFirestoreInternal" {
54+
// Pods depending on GoogleAppMeasurement, FirebaseCoreInternal and
55+
// FirebaseFirestoreInternal should pin the dependency to the new version.
56+
if pod.name.hasPrefix("GoogleAppMeasurement") ||
57+
pod.name == "FirebaseCoreInternal" ||
58+
pod.name == "FirebaseFirestoreInternal" {
5759
updateDependenciesToLatest(
5860
dependency: pod.name,
5961
pods: manifest.pods,

0 commit comments

Comments
 (0)