Skip to content

Commit

Permalink
Merge pull request #226 from WideSpectrumComputing/master
Browse files Browse the repository at this point in the history
fix: resolve #225: Fix cocopods' podspec
  • Loading branch information
akornich authored Dec 25, 2019
2 parents 8defd45 + ddbd832 commit dd1e014
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 9 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.11.1**
- fix: resolve #225: Fix cocopods' podspec

**1.11.0**
- feat: resolve #220: Implement payload data structure as a DTO.
- feat: resolve #222: Integrate the new payload DTOs.
Expand Down
31 changes: 25 additions & 6 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.11.0"
s.version = "1.11.1"
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 Down Expand Up @@ -33,32 +33,51 @@ Pod::Spec.new do |s|
'Rollbar/RollbarTelemetry.h',
'Rollbar/RollbarTelemetryType.h',
'Rollbar/RollbarLog.h',
'Rollbar/RollbarJSONFriendlyProtocol.h',
'Rollbar/RollbarJSONFriendlyObject.h',
'Rollbar/RollbarKSCrashReportSink.h',
'Rollbar/RollbarKSCrashInstallation.h',
'Rollbar/Deploys/RollbarDeploysProtocol.h',
'Rollbar/Deploys/RollbarDeploysManager.h',
'Rollbar/RollbarJSONFriendlyProtocol.h',
'Rollbar/RollbarJSONFriendlyObject.h',
'Rollbar/Deploys/RollbarDeploys.h',
'Rollbar/Deploys/DeployApiCallOutcome.h',
'Rollbar/Deploys/Deployment.h',
'Rollbar/Deploys/DeploymentDetails.h',
'Rollbar/Deploys/DeployApiCallResult.h',
'Rollbar/Deploys/RollbarDeploysDTOs.h',
'Rollbar/Deploys/RollbarDeploys.h',
'Rollbar/DTOs/JSONSupport.h',
'Rollbar/DTOs/RollbarPayloadsDTOs.h',
'Rollbar/DTOs/Persistent.h',
'Rollbar/DTOs/DataTransferObject.h',
'Rollbar/DTOs/DataTransferObject+CustomData.h',
'Rollbar/DTOs/RollbarDTOAbstraction.h',
'Rollbar/DTOs/TriStateFlag.h',
'Rollbar/DTOs/CaptureIpType.h',
'Rollbar/DTOs/HttpMethod.h',
'Rollbar/DTOs/RollbarAppLanguage.h',
'Rollbar/DTOs/RollbarPayload.h',
'Rollbar/DTOs/RollbarData.h',
'Rollbar/DTOs/RollbarBody.h',
'Rollbar/DTOs/RollbarMessage.h',
'Rollbar/DTOs/RollbarTrace.h',
'Rollbar/DTOs/RollbarCallStackFrame.h',
'Rollbar/DTOs/RollbarCallStackFrameContext.h',
'Rollbar/DTOs/RollbarException.h',
'Rollbar/DTOs/RollbarCrashReport.h',
'Rollbar/DTOs/RollbarConfig.h',
'Rollbar/DTOs/RollbarServerConfig.h',
'Rollbar/DTOs/RollbarDestination.h',
'Rollbar/DTOs/RollbarDeveloperOptions.h',
'Rollbar/DTOs/RollbarProxy.h',
'Rollbar/DTOs/RollbarScrubbingOptions.h',
'Rollbar/DTOs/RollbarServer.h',
'Rollbar/DTOs/RollbarRequest.h',
'Rollbar/DTOs/RollbarPerson.h',
'Rollbar/DTOs/RollbarModule.h',
'Rollbar/DTOs/RollbarTelemetryOptions.h',
'Rollbar/DTOs/RollbarLoggingOptions.h',
'Rollbar/DTOs/RollbarServer.h',
'Rollbar/DTOs/RollbarClient.h',
'Rollbar/DTOs/RollbarJavascript.h',
'Rollbar/DTOs/RollbarPayloadsDTOs.h',
'KSCrash/Source/KSCrash/Recording/KSCrash.h',
'KSCrash/Source/KSCrash/Installations/KSCrashInstallation.h',
'KSCrash/Source/KSCrash/Installations/KSCrashInstallation+Private.h',
Expand Down
4 changes: 2 additions & 2 deletions Rollbar.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4271,7 +4271,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1.11.0;
CURRENT_PROJECT_VERSION = 1.11.1;
DEVELOPMENT_TEAM = LDX6L68VZJ;
ENABLE_BITCODE = YES;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand Down Expand Up @@ -4332,7 +4332,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO;
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 1.11.0;
CURRENT_PROJECT_VERSION = 1.11.1;
DEVELOPMENT_TEAM = LDX6L68VZJ;
ENABLE_BITCODE = YES;
ENABLE_NS_ASSERTIONS = NO;
Expand Down
2 changes: 1 addition & 1 deletion Rollbar/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.11.0";
static NSString * const NOTIFIER_VERSION = @"1.11.1";

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

0 comments on commit dd1e014

Please sign in to comment.