Skip to content

Commit 8e2d507

Browse files
authored
Merge pull request #156 from WideSpectrumComputing/CocoaPodsFix
fix: ref #154
2 parents fed9292 + 350754c commit 8e2d507

13 files changed

+17
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ The change log has moved to this repo's [GitHub Releases Page](https://github.co
2525

2626
## Release Notes
2727

28+
### 2.2.2
29+
30+
- fix: resolve #154 - Fix Cocoapods builds.
31+
2832
### 2.2.1
2933

3034
- fix: resolve #154 - Fix Cocoapods builds.

RollbarAUL.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Pod::Spec.new do |s|
99

10-
s.version = "2.2.1"
10+
s.version = "2.2.2"
1111
s.name = "RollbarAUL"
1212
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
1313
s.description = <<-DESC

RollbarCocoaLumberjack.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Pod::Spec.new do |s|
99

10-
s.version = "2.2.1"
10+
s.version = "2.2.2"
1111
s.name = "RollbarCocoaLumberjack"
1212
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
1313
s.description = <<-DESC

RollbarCommon.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Pod::Spec.new do |s|
99

10-
s.version = "2.2.1"
10+
s.version = "2.2.2"
1111
s.name = "RollbarCommon"
1212
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
1313
s.description = <<-DESC

RollbarDeploys.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Pod::Spec.new do |s|
99

10-
s.version = "2.2.1"
10+
s.version = "2.2.2"
1111
s.name = "RollbarDeploys"
1212
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
1313
s.description = <<-DESC

RollbarKSCrash.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Pod::Spec.new do |s|
99

10-
s.version = "2.2.1"
10+
s.version = "2.2.2"
1111
s.name = "RollbarKSCrash"
1212
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
1313
s.description = <<-DESC

RollbarNotifier.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Pod::Spec.new do |s|
99

10-
s.version = "2.2.1"
10+
s.version = "2.2.2"
1111
s.name = "RollbarNotifier"
1212
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
1313
s.description = <<-DESC

RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#pragma mark - constants
1616

17-
static NSString * const NOTIFIER_VERSION = @"2.2.1";
17+
static NSString * const NOTIFIER_VERSION = @"2.2.2";
1818

1919
static NSString * const NOTIFIER_NAME = @"rollbar-apple";
2020

RollbarNotifier/Sources/RollbarNotifier/RollbarTelemetry.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ - (instancetype)init {
9999

100100
#pragma mark - Config options
101101

102-
- (instancetype)configureWithOptions:(nonnull RollbarTelemetryOptions *)telemetryOptions {
102+
- (nonnull instancetype)configureWithOptions:(nonnull RollbarTelemetryOptions *)telemetryOptions {
103103

104104
self.enabled = telemetryOptions.enabled;
105105
self.scrubViewInputs = telemetryOptions.viewInputsScrubber.enabled;
@@ -113,6 +113,8 @@ - (instancetype)configureWithOptions:(nonnull RollbarTelemetryOptions *)telemetr
113113

114114
[[RollbarTelemetryThread sharedInstance] start];
115115
}
116+
117+
return self;
116118
}
117119

118120
- (void)setCaptureLog:(BOOL)shouldCapture {

RollbarNotifier/Sources/RollbarNotifier/include/RollbarTelemetry.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
/// RollbarTelemetry application wide "service" component
2121
@interface RollbarTelemetry : NSObject
2222

23-
/// Shared service instance/singleton
24-
+ (nonnull instancetype)sharedInstance;
25-
2623
#pragma mark - Sigleton pattern
2724

2825
+ (nonnull instancetype)sharedInstance;

0 commit comments

Comments
 (0)