Skip to content

Commit db21b7a

Browse files
committed
Update versions for Release 11.6.0
1 parent 709a685 commit db21b7a

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

FirebaseCombineSwift.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseCombineSwift'
3-
s.version = '11.0.0'
3+
s.version = '11.6.0'
44
s.summary = 'Swift extensions with Combine support for Firebase'
55

66
s.description = <<-DESC
@@ -51,7 +51,7 @@ for internal testing only. It should not be published.
5151
s.osx.framework = 'AppKit'
5252
s.tvos.framework = 'UIKit'
5353

54-
s.dependency 'FirebaseCore', '11.5'
54+
s.dependency 'FirebaseCore', '11.6.0'
5555
s.dependency 'FirebaseAuth', '~> 11.0'
5656
s.dependency 'FirebaseFunctions', '~> 11.0'
5757
s.dependency 'FirebaseFirestore', '~> 11.0'

ReleaseTooling/Sources/FirebaseManifest/FirebaseManifest.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ public let shared = Manifest(
5555
Pod("FirebaseMLModelDownloader", isBeta: true, zip: true),
5656
Pod("FirebaseVertexAI", zip: true),
5757
Pod("Firebase", allowWarnings: true, platforms: ["ios", "tvos", "macos"], zip: true),
58+
Pod("FirebaseAuthTestingSupport", podVersion: "2.0.0", releasing: false, zip: false),
59+
Pod("FirebaseFirestoreTestingSupport", podVersion: "1.0.0", releasing: false, zip: false),
60+
Pod("FirebaseCombineSwift", releasing: false, zip: false),
5861
]
5962
)
6063

@@ -64,6 +67,7 @@ public struct Manifest {
6467
public let pods: [Pod]
6568

6669
public func versionString(_ pod: Pod) -> String {
70+
let version = pod.podVersion ?? self.version
6771
return pod.isBeta ? version + "-beta" : version
6872
}
6973
}

ReleaseTooling/Sources/FirebaseManifest/Pod.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ public struct Pod {
2828
public let allowWarnings: Bool
2929
/// Set of platforms (e.g. "ios", "macos", "tvos", or "watchos") to build this pod for.
3030
public let platforms: Set<String>
31+
/// Allows overriding the ``Manifest/version`` for this pod; defaults to `nil`.
32+
public let podVersion: String?
3133
/// Whether or not the pod is planned for publicly releasing (as some pods are for
3234
/// internal/testing use).
3335
public let releasing: Bool
@@ -47,6 +49,7 @@ public struct Pod {
4749
self.isBeta = isBeta
4850
self.allowWarnings = allowWarnings
4951
self.platforms = platforms
52+
self.podVersion = podVersion
5053
self.releasing = releasing
5154
self.zip = zip
5255
}

0 commit comments

Comments
 (0)