diff --git a/Rollbar.podspec b/Rollbar.podspec index e497271..9c595d8 100644 --- a/Rollbar.podspec +++ b/Rollbar.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Rollbar" - s.version = "1.0.0-alpha1" + s.version = "1.0.0-alpha2" s.summary = "Objective-C library for crash reporting and logging with Rollbar." s.description = <<-DESC Find, fix, and resolve errors with Rollbar. @@ -8,17 +8,20 @@ Pod::Spec.new do |s| Analyze, de-dupe, send alerts, and prepare the data for further analysis. Search, sort, and prioritize via the Rollbar dashboard. DESC - s.homepage = "https://rollbar.com" - s.license = { :type => "MIT", :file => "LICENSE" } + + s.homepage = "https://rollbar.com" + s.license = { :type => "MIT", :file => "LICENSE" } s.author = { "Rollbar" => "support@rollbar.com" } s.social_media_url = "http://twitter.com/rollbar" - s.platform = :ios, "7.0" - s.source = { :git => "https://github.com/rollbar/rollbar-ios.git", :tag => "v1.0.0-alpha1" } - s.source_files = "Rollbar", + s.platform = :ios, "7.0" + s.source = { :git => "https://github.com/rollbar/rollbar-ios.git", :tag => "v1.0.0-alpha2" } + s.source_files = "Rollbar/*.{h,m}", "KSCrash/Source/KSCrash/**/*.{m,h,mm,c,cpp}" + s.frameworks = "SystemConfiguration", + "MessageUI", "UIKit", "Foundation" - s.libraries = "c++" + s.libraries = "c++", "z" s.requires_arc = true end diff --git a/Rollbar/RollbarNotifier.m b/Rollbar/RollbarNotifier.m index ff8f811..f04be4e 100644 --- a/Rollbar/RollbarNotifier.m +++ b/Rollbar/RollbarNotifier.m @@ -19,7 +19,7 @@ #define MAX_PAYLOAD_SIZE 128 // The maximum payload size in kb -static NSString *NOTIFIER_VERSION = @"0.2.0"; +static NSString *NOTIFIER_VERSION = @"1.0.0-alpha2"; static NSString *QUEUED_ITEMS_FILE_NAME = @"rollbar.items"; static NSString *STATE_FILE_NAME = @"rollbar.state";