diff --git a/RollbarCommon.podspec b/RollbarCommon.podspec index e741e20..0085bcd 100644 --- a/RollbarCommon.podspec +++ b/RollbarCommon.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| - s.version = "2.0.0-alpha22" + s.version = "2.0.0-alpha23" s.name = "RollbarCommon" s.summary = "Application or client side SDK for accessing the Rollbar API Server." s.description = <<-DESC diff --git a/RollbarDeploys.podspec b/RollbarDeploys.podspec index 464d4fe..9ba2876 100644 --- a/RollbarDeploys.podspec +++ b/RollbarDeploys.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| - s.version = "2.0.0-alpha22" + s.version = "2.0.0-alpha23" s.name = "RollbarDeploys" s.summary = "Application or client side SDK for accessing the Rollbar API Server." s.description = <<-DESC diff --git a/RollbarKSCrash.podspec b/RollbarKSCrash.podspec index 8ebb92b..cb2cdd5 100644 --- a/RollbarKSCrash.podspec +++ b/RollbarKSCrash.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| - s.version = "2.0.0-alpha22" + s.version = "2.0.0-alpha23" s.name = "RollbarKSCrash" s.summary = "Application or client side SDK for accessing the Rollbar API Server." s.description = <<-DESC diff --git a/RollbarNotifier.podspec b/RollbarNotifier.podspec index 5620976..e9a7442 100644 --- a/RollbarNotifier.podspec +++ b/RollbarNotifier.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| - s.version = "2.0.0-alpha22" + s.version = "2.0.0-alpha23" s.name = "RollbarNotifier" s.summary = "Application or client side SDK for accessing the Rollbar API Server." s.description = <<-DESC diff --git a/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m b/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m index 4ab09a8..e1aaaad 100644 --- a/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m +++ b/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m @@ -22,7 +22,7 @@ #pragma mark - constants -static NSString * const NOTIFIER_VERSION = @"2.0.0-alpha22"; +static NSString * const NOTIFIER_VERSION = @"2.0.0-alpha23"; static NSString * const NOTIFIER_NAME = @"rollbar-*os"; diff --git a/RollbarSDK.podspec b/RollbarSDK.podspec index 7d91bf2..6ffa045 100644 --- a/RollbarSDK.podspec +++ b/RollbarSDK.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |sdk| # Rollbar SDK: # ============ - sdk.version = "2.0.0-alpha22" + sdk.version = "2.0.0-alpha23" sdk.name = "RollbarSDK" sdk.summary = "Application or client side SDK for accessing the Rollbar API Server." sdk.description = <<-DESC @@ -147,36 +147,35 @@ Pod::Spec.new do |sdk| # RollbarKSCrash module: # ===================== sdk.subspec "RollbarKSCrash" do |kscrash| - notifier.name = "RollbarKSCrash" + kscrash.name = "RollbarKSCrash" # Any platform, if omitted: - # notifier.platform = :ios - # notifier.platform = :ios, "5.0" + # kscrash.platform = :ios + # kscrash.platform = :ios, "5.0" # When using multiple platforms: - # notifier.ios.deployment_target = "9.0" - # notifier.osx.deployment_target = "10.10" - # notifier.tvos.deployment_target = "11.0" - # notifier.watchos.deployment_target = "4.0" - - notifier.source_files = "RollbarNotifier/Sources/RollbarKSCrash/**/*.{h,m}" - # notifier.exclude_files = "Classes/Exclude" - notifier.public_header_files = "RollbarNotifier/Sources/RollbarKSCrash/include/*.h" - # notifier.module_map = "RollbarNotifier/Sources/RollbarKSCrash/include/module.modulemap" - # notifier.resource = "../rollbar-logo.png" - # notifier.resources = "Resources/*.png" - # notifier.preserve_paths = "FilesToSave", "MoreFilesToSave" - - notifier.dependency "RollbarSDK/RollbarCommon" - notifier.framework = "Foundation" - # notifier.frameworks = "SomeFramework", "AnotherFramework" - # notifier.library = "iconv" - # notifier.libraries = "iconv", "xml2" - # notifier.dependency "JSONKit", "~> 1.4" - notifier.requires_arc = true - # notifier.xcconfig = { + # kscrash.ios.deployment_target = "9.0" + # kscrash.osx.deployment_target = "10.10" + # kscrash.tvos.deployment_target = "11.0" + # kscrash.watchos.deployment_target = "4.0" + + kscrash.source_files = "#{kscrash.name}/Sources/#{kscrash.name}/**/*.{h,m}" + # kscrash.exclude_files = "Classes/Exclude" + kscrash.public_header_files = "#{kscrash.name}/Sources/#{kscrash.name}/include/*.h" + # kscrash.module_map = "#{kscrash.name}/Sources/#{kscrash.name}/include/module.modulemap" + # kscrash.resource = "../rollbar-logo.png" + # kscrash.resources = "Resources/*.png" + # kscrash.preserve_paths = "FilesToSave", "MoreFilesToSave" + + kscrash.dependency "RollbarSDK/RollbarCommon" + kscrash.framework = "Foundation" + # kscrash.frameworks = "SomeFramework", "AnotherFramework" + # kscrash.library = "iconv" + # kscrash.dependency "JSONKit", "~> 1.4" + kscrash.requires_arc = true + # kscrash.xcconfig = { # "USE_HEADERMAP" => "NO", - # "HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Sources/RollbarNotifier/**" + # "HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Sources/#{kscrash.name}/**" # } end