Skip to content

Commit 2dce684

Browse files
authored
Bumped version to 3.3.0 (#345)
1 parent 18439fb commit 2dce684

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

Rollbar.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Rollbar"
3-
s.version = "3.2.1"
3+
s.version = "3.3.0"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarAUL.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RollbarAUL"
3-
s.version = "3.2.1"
3+
s.version = "3.3.0"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarCocoaLumberjack.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RollbarCocoaLumberjack"
3-
s.version = "3.2.1"
3+
s.version = "3.3.0"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarCommon.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RollbarCommon"
3-
s.version = "3.2.1"
3+
s.version = "3.3.0"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarCrash.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RollbarCrash"
3-
s.version = "3.2.1"
3+
s.version = "3.3.0"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarDeploys.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RollbarDeploys"
3-
s.version = "3.2.1"
3+
s.version = "3.3.0"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarNotifier.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RollbarNotifier"
3-
s.version = "3.2.1"
3+
s.version = "3.3.0"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#pragma mark - constants
1616

17-
static NSString * const NOTIFIER_VERSION = @"3.2.1";
17+
static NSString * const NOTIFIER_VERSION = @"3.3.0";
1818

1919
static NSString * const NOTIFIER_NAME = @"rollbar-apple";
2020

RollbarNotifier/Tests/RollbarNotifierTests-ObjC/DTOsTests.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ - (void)testRollbarModuleDTO {
213213
XCTAssertTrue([dto.name isEqualToString:@"MN1"],
214214
@"Proper name"
215215
);
216-
dto.version = @"v3.2.1";
217-
XCTAssertTrue([dto.version isEqualToString:@"v3.2.1"],
216+
dto.version = @"v3.3.0";
217+
XCTAssertTrue([dto.version isEqualToString:@"v3.3.0"],
218218
@"Proper version"
219219
);
220220

RollbarNotifier/Tests/RollbarNotifierTests/RollbarNotifierDTOsTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ final class RollbarNotifierDTOsTests: XCTestCase {
218218
XCTAssertTrue(.orderedSame == dto.name!.compare("MN1"),
219219
"Proper name"
220220
);
221-
dto.version = "v3.2.1";
222-
XCTAssertTrue(.orderedSame == dto.version!.compare("v3.2.1"),
221+
dto.version = "v3.3.0";
222+
XCTAssertTrue(.orderedSame == dto.version!.compare("v3.3.0"),
223223
"Proper version"
224224
);
225225

0 commit comments

Comments
 (0)