File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
ReleaseTooling/Sources/ZipBuilder Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Firebase 9.3.0
2
+ - [ fixed] Remove GoogleSignInSwiftSupport from Zip and Carthage distributions due to
3
+ infeasibility. The GoogleSignIn distribution continues. (#9937 )
4
+
1
5
# Firebase 9.2.0
2
6
- [ added] Zip and Carthage distributions now include GoogleSignInSwiftSupport. (#9900 )
3
7
Original file line number Diff line number Diff line change @@ -328,7 +328,7 @@ struct ZipBuilder {
328
328
podsToInstall. append ( CocoaPodUtils . VersionedPod ( name: " Google-Mobile-Ads-SDK " ,
329
329
version: nil ,
330
330
platforms: [ " ios " ] ) )
331
- podsToInstall. append ( CocoaPodUtils . VersionedPod ( name: " GoogleSignInSwiftSupport " ,
331
+ podsToInstall. append ( CocoaPodUtils . VersionedPod ( name: " GoogleSignIn " ,
332
332
version: nil ,
333
333
platforms: [ " ios " ] ) )
334
334
@@ -440,7 +440,7 @@ struct ZipBuilder {
440
440
// Skip Analytics and the pods bundled with it.
441
441
let remainingPods = installedPods. filter {
442
442
$0. key == " Google-Mobile-Ads-SDK " ||
443
- $0. key == " GoogleSignInSwiftSupport " ||
443
+ $0. key == " GoogleSignIn " ||
444
444
( firebaseZipPods. contains ( $0. key) &&
445
445
$0. key != " FirebaseAnalyticsSwift " &&
446
446
$0. key != " Firebase " &&
@@ -686,7 +686,7 @@ struct ZipBuilder {
686
686
/// Describes the dependency on other frameworks for the README file.
687
687
func readmeHeader( podName: String ) -> String {
688
688
var header = " ## \( podName) "
689
- if !( podName == " FirebaseAnalytics " || podName == " GoogleSignInSwiftSupport " ) {
689
+ if !( podName == " FirebaseAnalytics " || podName == " GoogleSignIn " ) {
690
690
header += " (~> FirebaseAnalytics) "
691
691
}
692
692
header += " \n "
You can’t perform that action at this time.
0 commit comments