diff --git a/Rollbar.podspec b/Rollbar.podspec index e7702416..f7966f66 100644 --- a/Rollbar.podspec +++ b/Rollbar.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Rollbar" - s.version = "3.3.0" + s.version = "3.3.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 8b534d6a..09af3eb9 100644 --- a/RollbarAUL.podspec +++ b/RollbarAUL.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarAUL" - s.version = "3.3.0" + s.version = "3.3.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 f1a79f97..28d7b2b8 100644 --- a/RollbarCocoaLumberjack.podspec +++ b/RollbarCocoaLumberjack.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarCocoaLumberjack" - s.version = "3.3.0" + s.version = "3.3.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 00311d09..773b7df0 100644 --- a/RollbarCommon.podspec +++ b/RollbarCommon.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarCommon" - s.version = "3.3.0" + s.version = "3.3.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 ad8961ce..6c8e5f11 100644 --- a/RollbarCrash.podspec +++ b/RollbarCrash.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarCrash" - s.version = "3.3.0" + s.version = "3.3.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 1cbae425..f87cfaa7 100644 --- a/RollbarDeploys.podspec +++ b/RollbarDeploys.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarDeploys" - s.version = "3.3.0" + s.version = "3.3.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.podspec b/RollbarNotifier.podspec index 32d78468..22140142 100644 --- a/RollbarNotifier.podspec +++ b/RollbarNotifier.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarNotifier" - s.version = "3.3.0" + s.version = "3.3.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/RollbarCrash/Recording/RollbarCrashReportVersion.h b/RollbarNotifier/Sources/RollbarCrash/Recording/RollbarCrashReportVersion.h index da32652a..a3d5fb2e 100644 --- a/RollbarNotifier/Sources/RollbarCrash/Recording/RollbarCrashReportVersion.h +++ b/RollbarNotifier/Sources/RollbarCrash/Recording/RollbarCrashReportVersion.h @@ -27,6 +27,6 @@ #ifndef HDR_RollbarCrashReportVersion_h #define HDR_RollbarCrashReportVersion_h -#define RollbarCrashCRASH_REPORT_VERSION "3.3.0" +#define RollbarCrashCRASH_REPORT_VERSION "3.3.1" #endif /* HDR_RollbarCrashReportVersion_h */ diff --git a/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m b/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m index e34ef244..c8556fde 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.3.0"; +static NSString * const NOTIFIER_VERSION = @"3.3.1"; static NSString * const NOTIFIER_NAME = @"rollbar-apple"; diff --git a/RollbarNotifier/Tests/RollbarNotifierTests-ObjC/DTOsTests.m b/RollbarNotifier/Tests/RollbarNotifierTests-ObjC/DTOsTests.m index db59331f..4ed165dd 100644 --- a/RollbarNotifier/Tests/RollbarNotifierTests-ObjC/DTOsTests.m +++ b/RollbarNotifier/Tests/RollbarNotifierTests-ObjC/DTOsTests.m @@ -213,8 +213,8 @@ - (void)testRollbarModuleDTO { XCTAssertTrue([dto.name isEqualToString:@"MN1"], @"Proper name" ); - dto.version = @"v3.3.0"; - XCTAssertTrue([dto.version isEqualToString:@"v3.3.0"], + dto.version = @"v3.3.1"; + XCTAssertTrue([dto.version isEqualToString:@"v3.3.1"], @"Proper version" ); diff --git a/RollbarNotifier/Tests/RollbarNotifierTests/RollbarNotifierDTOsTests.swift b/RollbarNotifier/Tests/RollbarNotifierTests/RollbarNotifierDTOsTests.swift index af2b9bf1..455d5494 100644 --- a/RollbarNotifier/Tests/RollbarNotifierTests/RollbarNotifierDTOsTests.swift +++ b/RollbarNotifier/Tests/RollbarNotifierTests/RollbarNotifierDTOsTests.swift @@ -218,8 +218,8 @@ final class RollbarNotifierDTOsTests: XCTestCase { XCTAssertTrue(.orderedSame == dto.name!.compare("MN1"), "Proper name" ); - dto.version = "v3.3.0"; - XCTAssertTrue(.orderedSame == dto.version!.compare("v3.3.0"), + dto.version = "v3.3.1"; + XCTAssertTrue(.orderedSame == dto.version!.compare("v3.3.1"), "Proper version" ); diff --git a/RollbarReport.podspec b/RollbarReport.podspec index 6eda882f..1d1d9cd6 100644 --- a/RollbarReport.podspec +++ b/RollbarReport.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RollbarReport" - s.version = "3.3.0" + s.version = "3.3.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.