diff --git a/CHANGELOG.md b/CHANGELOG.md index 079b2fa8..5e73fe85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/RollbarAUL.podspec b/RollbarAUL.podspec index 8484380b..0e6c0168 100644 --- a/RollbarAUL.podspec +++ b/RollbarAUL.podspec @@ -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 diff --git a/RollbarCocoaLumberjack.podspec b/RollbarCocoaLumberjack.podspec index 197b8923..ae3340ea 100644 --- a/RollbarCocoaLumberjack.podspec +++ b/RollbarCocoaLumberjack.podspec @@ -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 diff --git a/RollbarCocoaLumberjack/Sources/RollbarCocoaLumberjack/include/RollbarCocoaLumberjackLogger.h b/RollbarCocoaLumberjack/Sources/RollbarCocoaLumberjack/include/RollbarCocoaLumberjackLogger.h index b4a7bdd9..d4f1609e 100644 --- a/RollbarCocoaLumberjack/Sources/RollbarCocoaLumberjack/include/RollbarCocoaLumberjackLogger.h +++ b/RollbarCocoaLumberjack/Sources/RollbarCocoaLumberjack/include/RollbarCocoaLumberjackLogger.h @@ -1,3 +1,6 @@ +#ifndef RollbarCocoaLumberjackLogger_h +#define RollbarCocoaLumberjackLogger_h + #import @import CocoaLumberjack; @import RollbarNotifier; @@ -38,3 +41,5 @@ NS_UNAVAILABLE; @end NS_ASSUME_NONNULL_END + +#endif //RollbarCocoaLumberjackLogger_h diff --git a/RollbarCommon.podspec b/RollbarCommon.podspec index f303555e..99ef345b 100644 --- a/RollbarCommon.podspec +++ b/RollbarCommon.podspec @@ -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 diff --git a/RollbarCommon/Sources/RollbarCommon/include/RollbarDTO+CustomData.h b/RollbarCommon/Sources/RollbarCommon/include/RollbarDTO+CustomData.h index 5a5b23c9..2785b8af 100644 --- a/RollbarCommon/Sources/RollbarCommon/include/RollbarDTO+CustomData.h +++ b/RollbarCommon/Sources/RollbarCommon/include/RollbarDTO+CustomData.h @@ -51,4 +51,4 @@ NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END -#endif //#ifndef RollbarDTO_CustomData_h +#endif //RollbarDTO_CustomData_h diff --git a/RollbarCommon/Sources/RollbarCommon/include/RollbarFileWriter.h b/RollbarCommon/Sources/RollbarCommon/include/RollbarFileWriter.h index 1389bef9..e50efc2b 100644 --- a/RollbarCommon/Sources/RollbarCommon/include/RollbarFileWriter.h +++ b/RollbarCommon/Sources/RollbarCommon/include/RollbarFileWriter.h @@ -5,6 +5,9 @@ // Created by Andrey Kornich on 2022-05-23. // +#ifndef RollbarFileWriter_h +#define RollbarFileWriter_h + @import Foundation; NS_ASSUME_NONNULL_BEGIN @@ -22,3 +25,5 @@ NS_UNAVAILABLE; @end NS_ASSUME_NONNULL_END + +#endif //RollbarFileWriter_h diff --git a/RollbarDeploys.podspec b/RollbarDeploys.podspec index 21988681..ea0b6051 100644 --- a/RollbarDeploys.podspec +++ b/RollbarDeploys.podspec @@ -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 diff --git a/RollbarKSCrash.podspec b/RollbarKSCrash.podspec index 040b5520..c6ee9124 100644 --- a/RollbarKSCrash.podspec +++ b/RollbarKSCrash.podspec @@ -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 diff --git a/RollbarNotifier.podspec b/RollbarNotifier.podspec index 8636962f..0599a804 100644 --- a/RollbarNotifier.podspec +++ b/RollbarNotifier.podspec @@ -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 diff --git a/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m b/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m index 3c3f4867..c80349a0 100644 --- a/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m +++ b/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m @@ -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"; diff --git a/RollbarPLCrashReporter.podspec b/RollbarPLCrashReporter.podspec index c32e2c05..78449d72 100644 --- a/RollbarPLCrashReporter.podspec +++ b/RollbarPLCrashReporter.podspec @@ -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 diff --git a/RollbarSDK.experimental_podspec b/RollbarSDK.experimental_podspec index 7c451a72..6e531e60 100644 --- a/RollbarSDK.experimental_podspec +++ b/RollbarSDK.experimental_podspec @@ -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 diff --git a/RollbarSwift.podspec b/RollbarSwift.podspec index 9ef91126..95e387da 100644 --- a/RollbarSwift.podspec +++ b/RollbarSwift.podspec @@ -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