Skip to content

Commit

Permalink
Merge pull request #56 from WideSpectrumComputing/master
Browse files Browse the repository at this point in the history
Updating dependency on Rollbar-iOS to v1.4.0
  • Loading branch information
akornich authored Oct 4, 2018
2 parents 38888f6 + c857aba commit 098d410
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions RollbarReactNative.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'RollbarReactNative'
s.version = '0.3.1'
s.version = '0.3.2'
s.summary = 'RollbarReactNative'
s.description = <<-DESC
RollbarReactNative is a library for interacting with the Rollbar
Expand All @@ -10,11 +10,11 @@ Pod::Spec.new do |s|
s.license = 'MIT'
s.author = { 'Rollbar' => '[email protected]' }
s.platform = :ios, '7.0'
s.source = { :git => 'https://github.com/author/RollbarReactNative.git', :tag => 'v0.3.1' }
s.source = { :git => 'https://github.com/author/RollbarReactNative.git', :tag => 'v0.3.2' }
s.requires_arc = true

s.dependency 'React'
s.dependency 'Rollbar', '~> 1.0.0'
s.dependency 'Rollbar', '~> 1.4.0'

s.source_files = 'ios/RollbarReactNative.{h,m}'
s.public_header_files = 'ios/RollbarReactNative.h'
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/java/com/rollbar/RollbarReactNative.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
public class RollbarReactNative extends ReactContextBaseJavaModule {
private static final String REACT_NATIVE = "react-native";
private static final String NOTIFIER_NAME = "rollbar-react-native";
private static final String NOTIFIER_VERSION = "0.3.1";
private static final String NOTIFIER_VERSION = "0.3.2";
private ReactContext reactContext;

public static ReactPackage getPackage() {
Expand Down
2 changes: 1 addition & 1 deletion ios/RollbarReactNative.m
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@implementation RollbarReactNative

static NSString *const NOTIFIER_NAME = @"rollbar-react-native";
static NSString *const NOTIFIER_VERSION = @"0.3.1";
static NSString *const NOTIFIER_VERSION = @"0.3.2";
static NSString *const REACT_NATIVE = @"react-native";

+ (void)initWithAccessToken:(NSString *)accessToken {
Expand Down
2 changes: 1 addition & 1 deletion ios/rollbar-ios
Submodule rollbar-ios updated 39 files
+27 −0 CHANGELOG.md
+2 −2 Rollbar.podspec
+94 −4 Rollbar.xcodeproj/project.pbxproj
+1 −3 Rollbar.xcodeproj/xcshareddata/xcschemes/RollbarFramework.xcscheme
+40 −0 Rollbar/Deploys/DeployApiCallResult.h
+188 −0 Rollbar/Deploys/DeployApiCallResult.m
+24 −0 Rollbar/Deploys/Deployment.h
+74 −0 Rollbar/Deploys/Deployment.m
+19 −0 Rollbar/Deploys/DeploymentDetails.h
+66 −0 Rollbar/Deploys/DeploymentDetails.m
+25 −0 Rollbar/Deploys/RollbarDeploysManager.h
+257 −0 Rollbar/Deploys/RollbarDeploysManager.m
+40 −0 Rollbar/Deploys/RollbarDeploysProtocol.h
+7 −1 Rollbar/NSJSONSerialization+Rollbar.h
+22 −6 Rollbar/NSJSONSerialization+Rollbar.m
+174 −57 Rollbar/Rollbar.m
+39 −3 Rollbar/RollbarConfiguration.h
+179 −17 Rollbar/RollbarConfiguration.m
+2 −0 Rollbar/RollbarFileReader.h
+4 −0 Rollbar/RollbarFileReader.m
+16 −0 Rollbar/RollbarJSONFriendlyObject.h
+41 −0 Rollbar/RollbarJSONFriendlyObject.m
+17 −0 Rollbar/RollbarJSONFriendlyProtocol.h
+1 −0 Rollbar/RollbarLevel.h
+22 −0 Rollbar/RollbarLevel.m
+6 −1 Rollbar/RollbarNotifier.h
+306 −89 Rollbar/RollbarNotifier.m
+28 −0 Rollbar/RollbarPayloadTruncator.h
+272 −0 Rollbar/RollbarPayloadTruncator.m
+36 −8 Rollbar/RollbarTelemetry.h
+83 −12 Rollbar/RollbarTelemetry.m
+2 −1 Rollbar/RollbarThread.h
+35 −8 Rollbar/RollbarThread.m
+187 −0 RollbarTests/PayloadTruncationTests.m
+230 −11 RollbarTests/RollbarConfigurationTests.m
+133 −0 RollbarTests/RollbarDeploysTests.m
+52 −1 RollbarTests/RollbarTelemetryTests.m
+7 −2 RollbarTests/RollbarTestUtil.m
+5 −2 RollbarTests/RollbarTests.m
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rollbar-react-native",
"version": "0.3.1",
"version": "0.3.2",
"description": "Library for reporting errors to Rollbar from React Native apps",
"main": "index.js",
"repository": "https://github.com/rollbar/rollbar-react-native.git",
Expand All @@ -17,7 +17,7 @@
"dependencies": {
"buffer": "^5.0.7",
"promise": "^8.0.1",
"rollbar": "^2.4.2",
"rollbar": "^2.4.3",
"url": "^0.11.0"
},
"devDependencies": {
Expand Down

0 comments on commit 098d410

Please sign in to comment.