Skip to content

Commit

Permalink
Merge pull request #337 from WideSpectrumComputing/master
Browse files Browse the repository at this point in the history
- fix: resolve #334: Error if archiving Mac OS app (Xcode 12.2, Mac OS Big Sur)
  • Loading branch information
akornich authored Nov 20, 2020
2 parents 225e16e + f47624c commit 2429333
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ The change log has moved to this repo's [GitHub Releases Page](https://github.co

## Release Notes

**1.12.13**
- fix: resolve #334: Error if archiving Mac OS app (Xcode 12.2, Mac OS Big Sur)

**1.12.12**
- fix: resolve #334: Error if archiving Mac OS app (Xcode 12.2, Mac OS Big Sur)

Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/Rollbar.svg)](https://img.shields.io/cocoapods/v/Rollbar.svg)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
![Rollbar Logo](https://github.com/rollbar/rollbar-ios/blob/master/rollbar-logo.png)

# Rollbar for iOS and macOS

Objective-C & Swift library for crash reporting and logging with [Rollbar](https://rollbar.com). It works on iOS and macOS.

[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/Rollbar.svg)](https://img.shields.io/cocoapods/v/Rollbar.svg)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)


## Setup Instructions

1. [Sign up for a Rollbar account](https://rollbar.com/signup)
Expand Down
8 changes: 7 additions & 1 deletion Rollbar.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|

s.version = "1.12.12"
s.version = "1.12.13"
s.name = "Rollbar"
s.summary = "Objective-C library for crash reporting and logging with Rollbar. It works on iOS and macOS."
s.description = <<-DESC
Expand All @@ -19,6 +19,12 @@ Pod::Spec.new do |s|
:tag => "v#{s.version}",
:submodules => true
}

s.pod_target_xcconfig = {'ONLY_ACTIVE_ARCH'=>"YES"}
s.user_target_xcconfig = {'ONLY_ACTIVE_ARCH'=>"YES"}

s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }

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

Expand Down
6 changes: 3 additions & 3 deletions Rollbar.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4447,7 +4447,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1.12.12;
CURRENT_PROJECT_VERSION = 1.12.13;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = LDX6L68VZJ;
ENABLE_BITCODE = YES;
Expand Down Expand Up @@ -4514,7 +4514,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO;
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 1.12.12;
CURRENT_PROJECT_VERSION = 1.12.13;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = LDX6L68VZJ;
ENABLE_BITCODE = YES;
Expand All @@ -4532,7 +4532,7 @@
INFOPLIST_FILE = RollbarFramework/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
MACOSX_DEPLOYMENT_TARGET = 10.12;
ONLY_ACTIVE_ARCH = NO;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_NAME = Rollbar;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
Expand Down
2 changes: 1 addition & 1 deletion Rollbar/Notifier_DTOs/RollbarConfig.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#pragma mark - constants

static NSString * const NOTIFIER_VERSION = @"1.12.12";
static NSString * const NOTIFIER_VERSION = @"1.12.13";

#define NOTIFIER_NAME_PREFIX = @"rollbar-";
#if TARGET_OS_IPHONE
Expand Down
Binary file modified rollbar-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2429333

Please sign in to comment.