Skip to content

Commit

Permalink
Merge pull request #185 from WideSpectrumComputing/master
Browse files Browse the repository at this point in the history
fix: resolve #183 - Fix broken Cocoapods build
  • Loading branch information
akornich authored May 26, 2022
2 parents 8ab423b + 872b55d commit f777b3b
Show file tree
Hide file tree
Showing 14 changed files with 25 additions and 11 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.3.1

- fix: resolve #183 - Fix broken Cocoapods build

### 2.3.0

- feat: Detection of possible Out-of-Memory issues
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.3.0"
s.version = "2.3.1"
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.3.0"
s.version = "2.3.1"
s.name = "RollbarCocoaLumberjack"
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
@@ -1,3 +1,6 @@
#ifndef RollbarCocoaLumberjackLogger_h
#define RollbarCocoaLumberjackLogger_h

#import <Foundation/Foundation.h>
@import CocoaLumberjack;
@import RollbarNotifier;
Expand Down Expand Up @@ -38,3 +41,5 @@ NS_UNAVAILABLE;
@end

NS_ASSUME_NONNULL_END

#endif //RollbarCocoaLumberjackLogger_h
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.3.0"
s.version = "2.3.1"
s.name = "RollbarCommon"
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 @@ -51,4 +51,4 @@ NS_ASSUME_NONNULL_BEGIN

NS_ASSUME_NONNULL_END

#endif //#ifndef RollbarDTO_CustomData_h
#endif //RollbarDTO_CustomData_h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
// Created by Andrey Kornich on 2022-05-23.
//

#ifndef RollbarFileWriter_h
#define RollbarFileWriter_h

@import Foundation;

NS_ASSUME_NONNULL_BEGIN
Expand All @@ -22,3 +25,5 @@ NS_UNAVAILABLE;
@end

NS_ASSUME_NONNULL_END

#endif //RollbarFileWriter_h
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.3.0"
s.version = "2.3.1"
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.3.0"
s.version = "2.3.1"
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.3.0"
s.version = "2.3.1"
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.3.0";
static NSString * const NOTIFIER_VERSION = @"2.3.1";

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

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.3.0"
s.version = "2.3.1"
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.3.0"
sdk.version = "2.3.1"
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.3.0"
s.version = "2.3.1"
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 f777b3b

Please sign in to comment.