Skip to content

Commit

Permalink
Release v1.0.0-alpha11
Browse files Browse the repository at this point in the history
  • Loading branch information
rokob committed May 25, 2018
1 parent b9a24e2 commit d2f78c9
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ DerivedData
*.hmap
*.xccheckout

IDEWorkspaceChecks.plist

#CocoaPods
Pods

Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Change Log
# CHANGELOG

The change log has moved to this repo's [GitHub Releases Page](https://github.com/rollbar/rollbar-ios/releases).

**1.0.0-alpha11**

- Framework builds for each of the recent versions of Xcode
- Cocoapods support

**1.0.0-alpha10**
- Change `setCaptureIp:` to `setCaptureIpType:`

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,9 @@ Objective-C library for crash reporting and logging with [Rollbar](https://rollb

### With [Cocoapods](http://cocoapods.org/)

*NOTE:* The installation via Cocoapods may currently not work due to an incompatiability with C++
libraries and Cocoapods. This is being resolved, but in the meantime installation via the
downloadable Framework below should be the way forward.

In your Podfile:

pod "Rollbar", "~> 1.0.0-alpha"
pod "Rollbar", "~> 1.0.0-alpha11"

Make sure to declare your platform as `ios` at the top of your Podfile. E.g:

Expand All @@ -29,7 +25,11 @@ Be sure to remember to `pod install` after changing your Podfile!

### Without Cocoapods

1. Download the [Rollbar framework](https://github.com/rollbar/rollbar-ios/releases/download/v1.0.0-alpha10/Rollbar.zip).
1. Download the [Rollbar framework](https://github.com/rollbar/rollbar-ios/releases/download/v1.0.0-alpha11/Rollbar.zip).
Note that depending on the version of Xcode you use to build your app, you might have to download
a different version of the framework if you have bitcode enabled. This is because of the way
handles bitcode serialization. The latest release on the [releases page](https://github.com/rollbar/rollbar-ios/releases)
should have a zip file for the most recent versions of Xcode.

2. Extract the Rollbar directory in the zip file to your Xcode project directory.

Expand Down
32 changes: 28 additions & 4 deletions Rollbar.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Rollbar"
s.version = "1.0.0-alpha3"
s.version = "1.0.0-alpha11"
s.summary = "Objective-C library for crash reporting and logging with Rollbar."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Expand All @@ -14,9 +14,33 @@ Pod::Spec.new do |s|
s.author = { "Rollbar" => "[email protected]" }
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-alpha3" }
s.source_files = "Rollbar/*.{h,m}",
"KSCrash/Source/KSCrash/**/*.{m,h,mm,c,cpp}"
s.source = { :git => "https://github.com/rollbar/rollbar-ios.git", :tag => "v1.0.0-alpha11", :submodules => true}

s.source_files = 'KSCrash/Source/KSCrash/**/*.{m,h,mm,c,cpp}',
'Rollbar/*.{h,m}'

s.public_header_files = 'Rollbar/Rollbar.h',
'Rollbar/RollbarNotifier.h',
'Rollbar/RollbarLogger.h',
'Rollbar/RollbarConfiguration.h',
'Rollbar/RollbarLevel.h',
'Rollbar/RollbarReachability.h',
'Rollbar/RollbarFileReader.h',
'Rollbar/RollbarThread.h',
'Rollbar/RollbarTelemetry.h',
'Rollbar/RollbarTelemetryType.h',
'Rollbar/NSJSONSerialization+Rollbar.h',
'Rollbar/RollbarKSCrashReportSink.h',
'Rollbar/RollbarKSCrashInstallation.h',
'KSCrash/Source/KSCrash/Recording/KSCrash.h',
'KSCrash/Source/KSCrash/Installations/KSCrashInstallation.h',
'KSCrash/Source/KSCrash/Installations/KSCrashInstallation+Private.h',
'KSCrash/Source/KSCrash/Reporting/Filters/KSCrashReportFilterBasic.h',
'KSCrash/Source/KSCrash/Reporting/Filters/KSCrashReportFilterAppleFmt.h',
'KSCrash/Source/KSCrash/Recording/KSCrashReportWriter.h',
'KSCrash/Source/KSCrash/Reporting/Filters/KSCrashReportFilter.h',
'KSCrash/Source/KSCrash/Recording/Monitors/KSCrashMonitorType.h'


s.frameworks = "SystemConfiguration",
"MessageUI",
Expand Down
2 changes: 1 addition & 1 deletion Rollbar/RollbarConfiguration.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#import "RollbarTelemetry.h"

static NSString *NOTIFIER_NAME = @"rollbar-ios";
static NSString *NOTIFIER_VERSION = @"1.0.0-alpha10";
static NSString *NOTIFIER_VERSION = @"1.0.0-alpha11";
static NSString *FRAMEWORK = @"ios";
static NSString *CONFIGURATION_FILENAME = @"rollbar.config";
static NSString *DEFAULT_ENDPOINT = @"https://api.rollbar.com/api/1/items/";
Expand Down

0 comments on commit d2f78c9

Please sign in to comment.