Skip to content

Commit e524a8d

Browse files
paulb777ryanwilson
authored andcommitted
Fix GULResetLogger API breakage (#2552)
* Fix GULResetLogger API breakage * podspec and CHANGELOG * typo
1 parent ff76c8a commit e524a8d

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

GoogleUtilities.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 = 'GoogleUtilities'
3-
s.version = '5.4.0'
3+
s.version = '5.4.1'
44
s.summary = 'Google Utilities for iOS (plus community support for macOS and tvOS)'
55

66
s.description = <<-DESC

GoogleUtilities/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Unreleased
22

3+
# 5.4.1
4+
- Fix GULResetLogger API breakage. (#2551)
5+
36
# 5.4.0
47
- Update GULLogger to use os_log instead of asl_log on iOS 9 and later. (#2374, #2504)
58

GoogleUtilities/Logger/GULLogger.m

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@
3636
});
3737
return messageCodeRegex;
3838
}
39+
40+
// GULResetLogger is unused but depended on by FirebaseCore versions 5.3.x and earlier.
41+
// It cannot be removed until GoogleUtilities does a breaking change release since FirebaseCore
42+
// allows GoogleUtilities to float up to the highest 5.x version.
43+
void GULResetLogger() {
44+
}
3945
#endif
4046

4147
@implementation GULLogger (Internal)

0 commit comments

Comments
 (0)