Skip to content

Commit

Permalink
fix: RollbarSwift.podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
akornich committed Mar 18, 2021
1 parent 63117a3 commit 4818130
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ The change log has moved to this repo's [GitHub Releases Page](https://github.co

## Release Notes

**2.0.0-beta6**
**2.0.0-beta5**
**2.0.0-beta4**
- fix: RollbarSwift.podspec
Expand Down
1 change: 1 addition & 0 deletions Demos/macosAppSwift/macosAppSwift/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//

import SwiftUI
import RollbarNotifier
import RollbarSwift

struct ContentView: View {
Expand Down
2 changes: 1 addition & 1 deletion 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.0.0-beta5"
s.version = "2.0.0-beta6"
s.name = "RollbarCommon"
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 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.0.0-beta5"
s.version = "2.0.0-beta6"
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.0.0-beta5"
s.version = "2.0.0-beta6"
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.0.0-beta5"
s.version = "2.0.0-beta6"
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 @@ -22,7 +22,7 @@

#pragma mark - constants

static NSString * const NOTIFIER_VERSION = @"2.0.0-beta5";
static NSString * const NOTIFIER_VERSION = @"2.0.0-beta6";

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.0.0-beta5"
s.version = "2.0.0-beta6"
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.0.0-beta5"
sdk.version = "2.0.0-beta6"
sdk.name = "RollbarSDK"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
sdk.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions 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.0.0-beta5"
s.version = "2.0.0-beta6"
s.name = "RollbarSwift"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down Expand Up @@ -36,7 +36,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "11.0"
# s.watchos.deployment_target = "4.0"
s.watchos.deployment_target = "4.0"
# Any platform, if omitted:
# s.platform = :ios
# s.platform = :ios, "5.0"
Expand Down
2 changes: 2 additions & 0 deletions RollbarSwift/Sources/RollbarSwift/RollbarExceptionGuard.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
#import "RollbarExceptionGuard.h"
#import "RollbarTryCatch.h"

@import RollbarNotifier;

@implementation RollbarExceptionGuard {
@private
RollbarLogger *logger;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
//

@import Foundation;
@import RollbarNotifier;

@class RollbarLogger;

NS_ASSUME_NONNULL_BEGIN

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import XCTest
import RollbarNotifier
@testable import RollbarSwift

final class RollbarSwiftTests: XCTestCase {
Expand Down

0 comments on commit 4818130

Please sign in to comment.