Skip to content

Commit

Permalink
Bumped version to 3.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
matux committed Jul 11, 2024
1 parent cd04a2b commit 1e3a4ce
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Rollbar.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion RollbarAUL.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion RollbarCocoaLumberjack.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion RollbarCommon.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion RollbarCrash.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion RollbarDeploys.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion RollbarNotifier.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
4 changes: 2 additions & 2 deletions RollbarNotifier/Tests/RollbarNotifierTests-ObjC/DTOsTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -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"
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
);

Expand Down
2 changes: 1 addition & 1 deletion RollbarReport.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 1e3a4ce

Please sign in to comment.