Skip to content

Commit 4546bd2

Browse files
authored
[CoreExtension] Remove NS_SWIFT_UNAVAILABLE attribute that caused breaking change (#13942)
1 parent 8328630 commit 4546bd2

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

Firebase.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 = 'Firebase'
3-
s.version = '11.4.0'
3+
s.version = '11.4.1'
44
s.summary = 'Firebase'
55

66
s.description = <<-DESC
@@ -43,7 +43,7 @@ Simplify your app development, grow your user base, and monetize more effectivel
4343
end
4444

4545
s.subspec 'CoreOnly' do |ss|
46-
ss.dependency 'FirebaseCore', '11.4.0'
46+
ss.dependency 'FirebaseCore', '11.4.1'
4747
ss.source_files = 'CoreOnly/Sources/Firebase.h'
4848
ss.preserve_paths = 'CoreOnly/Sources/module.modulemap'
4949
if ENV['FIREBASE_POD_REPO_FOR_DEV_POD'] then

FirebaseCore.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 = 'FirebaseCore'
3-
s.version = '11.4.0'
3+
s.version = '11.4.1'
44
s.summary = 'Firebase Core'
55

66
s.description = <<-DESC
@@ -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.4'
5757

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

FirebaseCore/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Firebase 11.4.1
2+
- [fixed] CocoaPods only release to revert breaking change in
3+
`FirebaseCoreExtension` SDK. (#13942)
4+
15
# Firebase 11.4.0
26
- [fixed] Fixed issue building documentation with some Firebase products. (#13756)
37

FirebaseCore/Extension/FIRHeartbeatLogger.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ typedef NS_ENUM(NSInteger, FIRDailyHeartbeatCode) {
4444
API_AVAILABLE(ios(13.0), macosx(10.15), macCatalyst(13.0), tvos(13.0), watchos(6.0));
4545

4646
/// Return the header value for the heartbeat logger.
47-
- (NSString *_Nullable)
48-
headerValue NS_SWIFT_UNAVAILABLE("Use `asyncHeaderValue() async -> String?` instead.");
47+
- (NSString *_Nullable)headerValue;
4948
#endif // FIREBASE_BUILD_CMAKE
5049

5150
@end

FirebaseCoreExtension.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseCoreExtension'
3-
s.version = '11.4.0'
3+
s.version = '11.4.1'
44
s.summary = 'Extended FirebaseCore APIs for Firebase product SDKs'
55

66
s.description = <<-DESC

0 commit comments

Comments
 (0)