diff --git a/CHANGELOG.md b/CHANGELOG.md index 8501cb32..0597ae7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## Release Notes +### 3.0.3 + +- The sequencing of logging levels has been revised to align with industry-standard priority order. + - Previous configuration listed logging levels (from lower to higher priority) as: Info, Debug, Warning, Critical, Error. + - The updated sequence is now: Debug, Info, Warning, Error, Critical. +- Users can now modify the target endpoint URL for the SDK directly from the Swift Demo's user interface. + ### 3.0.2 - Import sqlite3 as a system header to prevent conflicts with Flutter's sqlite3 platform-specific libraries. diff --git a/Rollbar.podspec b/Rollbar.podspec index c24dbf7f..bb1cebca 100644 --- a/Rollbar.podspec +++ b/Rollbar.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Rollbar" - s.version = "3.0.2" + s.version = "3.0.3" 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 314c6f0c..ded28e46 100644 --- a/RollbarAUL.podspec +++ b/RollbarAUL.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarAUL" - s.version = "3.0.2" + s.version = "3.0.3" 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 90d3d4bd..360adcb4 100644 --- a/RollbarCocoaLumberjack.podspec +++ b/RollbarCocoaLumberjack.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarCocoaLumberjack" - s.version = "3.0.2" + s.version = "3.0.3" 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 81daddc4..3021096c 100644 --- a/RollbarCommon.podspec +++ b/RollbarCommon.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarCommon" - s.version = "3.0.2" + s.version = "3.0.3" 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/RollbarCrashReport.podspec b/RollbarCrashReport.podspec index ea277e1f..dd58862c 100644 --- a/RollbarCrashReport.podspec +++ b/RollbarCrashReport.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarCrashReport" - s.version = "3.0.2" + s.version = "3.0.3" 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 51927c22..02d3744d 100644 --- a/RollbarDeploys.podspec +++ b/RollbarDeploys.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarDeploys" - s.version = "3.0.2" + s.version = "3.0.3" 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.podspec b/RollbarNotifier.podspec index 6f6b615c..224d7bd1 100644 --- a/RollbarNotifier.podspec +++ b/RollbarNotifier.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarNotifier" - s.version = "3.0.2" + s.version = "3.0.3" 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 7f3d4d11..2ac450e3 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.0.2"; +static NSString * const NOTIFIER_VERSION = @"3.0.3"; static NSString * const NOTIFIER_NAME = @"rollbar-apple";