From 221cb457ddcbce59f0a50f072ea2755ecb232db0 Mon Sep 17 00:00:00 2001 From: Matias Pequeno Date: Wed, 2 Aug 2023 18:30:15 -0300 Subject: [PATCH 1/2] Updated changelog for 3.1.1 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92a82204..673b7123 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Fixed archiving issue when integrating the SDK using Cocoapods. - Updating is unnecessary if using any other package manager like SPM. +- Renamed `RollbarCrash` Obj-C protocol to `RollbarCrashHandler` to prevent potential name collisions with the `RollbarCrash` module` when creating Swift frameworks. ### 3.1.0 From c53e0fe0aca871bd47ee297db67dd1f5ab983a09 Mon Sep 17 00:00:00 2001 From: Matias Pequeno Date: Wed, 2 Aug 2023 18:30:25 -0300 Subject: [PATCH 2/2] Bumped versions to 3.1.1 --- Rollbar.podspec | 2 +- RollbarAUL.podspec | 2 +- RollbarCocoaLumberjack.podspec | 2 +- RollbarCommon.podspec | 2 +- RollbarCrash.podspec | 2 +- RollbarDeploys.podspec | 2 +- RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Rollbar.podspec b/Rollbar.podspec index fdb02bbb..302c2a9d 100644 --- a/Rollbar.podspec +++ b/Rollbar.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Rollbar" - s.version = "3.1.0" + s.version = "3.1.1" s.summary = "Application or client side SDK for interacting with the Rollbar API Server." s.description = <<-DESC Find, fix, and resolve errors with Rollbar. diff --git a/RollbarAUL.podspec b/RollbarAUL.podspec index 613829d4..6e4ae63f 100644 --- a/RollbarAUL.podspec +++ b/RollbarAUL.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarAUL" - s.version = "3.1.0" + s.version = "3.1.1" s.summary = "Application or client side SDK for interacting with the Rollbar API Server." s.description = <<-DESC Find, fix, and resolve errors with Rollbar. diff --git a/RollbarCocoaLumberjack.podspec b/RollbarCocoaLumberjack.podspec index 74ea9051..1f4e3036 100644 --- a/RollbarCocoaLumberjack.podspec +++ b/RollbarCocoaLumberjack.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarCocoaLumberjack" - s.version = "3.1.0" + s.version = "3.1.1" s.summary = "Application or client side SDK for interacting with the Rollbar API Server." s.description = <<-DESC Find, fix, and resolve errors with Rollbar. diff --git a/RollbarCommon.podspec b/RollbarCommon.podspec index c9dfbc45..8ffba305 100644 --- a/RollbarCommon.podspec +++ b/RollbarCommon.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarCommon" - s.version = "3.1.0" + s.version = "3.1.1" s.summary = "Application or client side SDK for interacting with the Rollbar API Server." s.description = <<-DESC Find, fix, and resolve errors with Rollbar. diff --git a/RollbarCrash.podspec b/RollbarCrash.podspec index fa396899..b2339f3b 100644 --- a/RollbarCrash.podspec +++ b/RollbarCrash.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarCrash" - s.version = "3.1.0" + s.version = "3.1.1" s.summary = "Application or client side SDK for interacting with the Rollbar API Server." s.description = <<-DESC Find, fix, and resolve errors with Rollbar. diff --git a/RollbarDeploys.podspec b/RollbarDeploys.podspec index ee9a06e3..351369e2 100644 --- a/RollbarDeploys.podspec +++ b/RollbarDeploys.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarDeploys" - s.version = "3.1.0" + s.version = "3.1.1" s.summary = "Application or client side SDK for interacting with the Rollbar API Server." s.description = <<-DESC Find, fix, and resolve errors with Rollbar. diff --git a/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m b/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m index 68c4dda0..d768613a 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 = @"3.1.0"; +static NSString * const NOTIFIER_VERSION = @"3.1.1"; static NSString * const NOTIFIER_NAME = @"rollbar-apple";