Skip to content

Commit

Permalink
Merge pull request #331 from WideSpectrumComputing/ref#285-Multiproje…
Browse files Browse the repository at this point in the history
…ctWorkspace

in preparation for v2.0.0-alpha24
  • Loading branch information
akornich committed Nov 10, 2020
2 parents 2774b37 + 52ce9af commit ba53750
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 7 deletions.
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-alpha23"
s.version = "2.0.0-alpha24"
s.name = "RollbarCommon"
s.summary = "Application or client side SDK for accessing the Rollbar API Server."
s.description = <<-DESC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
// Created by Andrey Kornich on 2020-11-02.
//

#ifndef RollbarCrashCollectorBase_h
#define RollbarCrashCollectorBase_h

@import Foundation;

#import "RollbarCrashCollectorProtocol.h"
Expand All @@ -26,3 +29,5 @@ NS_DESIGNATED_INITIALIZER;
@end

NS_ASSUME_NONNULL_END

#endif /* RollbarCrashCollectorBase_h */
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
// Created by Andrey Kornich on 2020-10-27.
//

#ifndef RollbarCrashReportData_h
#define RollbarCrashReportData_h

@import Foundation;

NS_ASSUME_NONNULL_BEGIN
Expand All @@ -26,3 +29,5 @@ NS_UNAVAILABLE;
@end

NS_ASSUME_NONNULL_END

#endif //RollbarCrashReportData_h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
// Created by Andrey Kornich on 2020-10-08.
//

#ifndef RollbarReceptionist_h
#define RollbarReceptionist_h

@import Foundation;

NS_ASSUME_NONNULL_BEGIN
Expand Down Expand Up @@ -67,3 +70,5 @@ typedef void (^RollbarReceptionistTaskBlock)(NSString *keyPath, id object, NSDic
@end

NS_ASSUME_NONNULL_END

#endif //RollbarReceptionist_h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
// Created by Andrey Kornich on 2020-10-09.
//

#import <Foundation/Foundation.h>
#ifndef RollbarTaskDispatcher_h
#define RollbarTaskDispatcher_h

@import Foundation;

NS_ASSUME_NONNULL_BEGIN

Expand Down Expand Up @@ -54,3 +57,5 @@ typedef void (^RollbarTaskBlock)(id taskInput);
@end

NS_ASSUME_NONNULL_END

#endif //RollbarTaskDispatcher_h
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-alpha23"
s.version = "2.0.0-alpha24"
s.name = "RollbarDeploys"
s.summary = "Application or client side SDK for accessing 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-alpha23"
s.version = "2.0.0-alpha24"
s.name = "RollbarKSCrash"
s.summary = "Application or client side SDK for accessing 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-alpha23"
s.version = "2.0.0-alpha24"
s.name = "RollbarNotifier"
s.summary = "Application or client side SDK for accessing 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-alpha23";
static NSString * const NOTIFIER_VERSION = @"2.0.0-alpha24";

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

Expand Down
2 changes: 1 addition & 1 deletion RollbarSDK.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-alpha23"
sdk.version = "2.0.0-alpha24"
sdk.name = "RollbarSDK"
sdk.summary = "Application or client side SDK for accessing the Rollbar API Server."
sdk.description = <<-DESC
Expand Down

0 comments on commit ba53750

Please sign in to comment.