Skip to content

Commit

Permalink
Merge pull request #187 from WideSpectrumComputing/master
Browse files Browse the repository at this point in the history
fix: resolve #186
  • Loading branch information
akornich authored May 31, 2022
2 parents f777b3b + 8d82f4b commit 45ed0f0
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ The change log has moved to this repo's [GitHub Releases Page](https://github.co

## Release Notes

### 2.3.2

- fix: resolve #186 - Fix RollbarCommon Cocopods warnings

### 2.3.1

- fix: resolve #183 - Fix broken Cocoapods build
Expand Down
2 changes: 1 addition & 1 deletion RollbarAUL.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.3.1"
s.version = "2.3.2"
s.name = "RollbarAUL"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarCocoaLumberjack.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.3.1"
s.version = "2.3.2"
s.name = "RollbarCocoaLumberjack"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
8 changes: 4 additions & 4 deletions RollbarCommon.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.3.1"
s.version = "2.3.2"
s.name = "RollbarCommon"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand All @@ -34,9 +34,9 @@ Pod::Spec.new do |s|

# When using multiple platforms:
s.osx.deployment_target = "10.11"
s.ios.deployment_target = "9.0"
s.tvos.deployment_target = "11.0"
s.watchos.deployment_target = "4.0"
s.ios.deployment_target = "13.0"
s.tvos.deployment_target = "13.0"
s.watchos.deployment_target = "6.0"
# Any platform, if omitted:
# s.platform = :ios
# s.platform = :ios, "5.0"
Expand Down
2 changes: 1 addition & 1 deletion RollbarDeploys.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.3.1"
s.version = "2.3.2"
s.name = "RollbarDeploys"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarKSCrash.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.3.1"
s.version = "2.3.2"
s.name = "RollbarKSCrash"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarNotifier.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.3.1"
s.version = "2.3.2"
s.name = "RollbarNotifier"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#pragma mark - constants

static NSString * const NOTIFIER_VERSION = @"2.3.1";
static NSString * const NOTIFIER_VERSION = @"2.3.2";

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

Expand Down
2 changes: 1 addition & 1 deletion RollbarPLCrashReporter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.3.1"
s.version = "2.3.2"
s.name = "RollbarPLCrashReporter"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarSDK.experimental_podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |sdk|

# Rollbar SDK:
# ============
sdk.version = "2.3.1"
sdk.version = "2.3.2"
sdk.name = "RollbarSDK"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
sdk.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.3.1"
s.version = "2.3.2"
s.name = "RollbarSwift"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down

0 comments on commit 45ed0f0

Please sign in to comment.