Skip to content

Commit

Permalink
Merge pull request #156 from WideSpectrumComputing/CocoaPodsFix
Browse files Browse the repository at this point in the history
fix: ref #154
  • Loading branch information
akornich authored Apr 20, 2022
2 parents fed9292 + 350754c commit 8e2d507
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ The change log has moved to this repo's [GitHub Releases Page](https://github.co

## Release Notes

### 2.2.2

- fix: resolve #154 - Fix Cocoapods builds.

### 2.2.1

- fix: resolve #154 - Fix Cocoapods builds.
Expand Down
2 changes: 1 addition & 1 deletion RollbarAUL.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.2.1"
s.version = "2.2.2"
s.name = "RollbarAUL"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarCocoaLumberjack.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.2.1"
s.version = "2.2.2"
s.name = "RollbarCocoaLumberjack"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarCommon.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.2.1"
s.version = "2.2.2"
s.name = "RollbarCommon"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarDeploys.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.2.1"
s.version = "2.2.2"
s.name = "RollbarDeploys"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarKSCrash.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.2.1"
s.version = "2.2.2"
s.name = "RollbarKSCrash"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarNotifier.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.2.1"
s.version = "2.2.2"
s.name = "RollbarNotifier"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#pragma mark - constants

static NSString * const NOTIFIER_VERSION = @"2.2.1";
static NSString * const NOTIFIER_VERSION = @"2.2.2";

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

Expand Down
4 changes: 3 additions & 1 deletion RollbarNotifier/Sources/RollbarNotifier/RollbarTelemetry.m
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ - (instancetype)init {

#pragma mark - Config options

- (instancetype)configureWithOptions:(nonnull RollbarTelemetryOptions *)telemetryOptions {
- (nonnull instancetype)configureWithOptions:(nonnull RollbarTelemetryOptions *)telemetryOptions {

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

[[RollbarTelemetryThread sharedInstance] start];
}

return self;
}

- (void)setCaptureLog:(BOOL)shouldCapture {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@
/// RollbarTelemetry application wide "service" component
@interface RollbarTelemetry : NSObject

/// Shared service instance/singleton
+ (nonnull instancetype)sharedInstance;

#pragma mark - Sigleton pattern

+ (nonnull instancetype)sharedInstance;
Expand Down
2 changes: 1 addition & 1 deletion RollbarPLCrashReporter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.2.1"
s.version = "2.2.2"
s.name = "RollbarPLCrashReporter"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarSDK.experimental_podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |sdk|

# Rollbar SDK:
# ============
sdk.version = "2.2.1"
sdk.version = "2.2.2"
sdk.name = "RollbarSDK"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
sdk.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.2.1"
s.version = "2.2.2"
s.name = "RollbarSwift"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down

0 comments on commit 8e2d507

Please sign in to comment.