Skip to content

Commit

Permalink
Merge pull request #341 from WideSpectrumComputing/master
Browse files Browse the repository at this point in the history
- fix: resolve #340: Cocoapods build failing under Xcode 12.0
  • Loading branch information
akornich authored Dec 1, 2020
2 parents 52dbd64 + 9c361c2 commit 77d586d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ The change log has moved to this repo's [GitHub Releases Page](https://github.co

## Release Notes

**1.12.14**
- fix: resolve #340: Cocoapods build failing under Xcode 12.0
- fix: resolve #338: Deployment target for Rollbar changed to iOS 12.0

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

Expand Down
20 changes: 11 additions & 9 deletions 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.13"
s.version = "1.12.14"
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 @@ -13,19 +13,13 @@ Pod::Spec.new do |s|
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Rollbar" => "support@rollbar.com" }
s.social_media_url = "http://twitter.com/rollbar"
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.12'
s.source = { :git => "https://github.com/rollbar/rollbar-ios.git",
: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}',

'RollbarFramework/*.{h,m}',
Expand Down Expand Up @@ -142,6 +136,14 @@ Pod::Spec.new do |s|

s.pod_target_xcconfig = {
"USE_HEADERMAP" => "NO",
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/Rollbar/**\""
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/Rollbar/**\"",
"ONLY_ACTIVE_ARCH" => "YES",
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64"
}

s.user_target_xcconfig = {
"ONLY_ACTIVE_ARCH" => "YES",
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64"
}

end
4 changes: 2 additions & 2 deletions Rollbar.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4427,7 +4427,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1.12.13;
CURRENT_PROJECT_VERSION = 1.12.14;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = LDX6L68VZJ;
ENABLE_BITCODE = YES;
Expand Down Expand Up @@ -4494,7 +4494,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO;
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 1.12.13;
CURRENT_PROJECT_VERSION = 1.12.14;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = LDX6L68VZJ;
ENABLE_BITCODE = YES;
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.13";
static NSString * const NOTIFIER_VERSION = @"1.12.14";

#define NOTIFIER_NAME_PREFIX = @"rollbar-";
#if TARGET_OS_IPHONE
Expand Down

0 comments on commit 77d586d

Please sign in to comment.