Skip to content

Commit

Permalink
Merge pull request #57 from WideSpectrumComputing/master
Browse files Browse the repository at this point in the history
missing rollbar-ios header files
  • Loading branch information
akornich authored Oct 8, 2018
2 parents 098d410 + 0b6c935 commit 952ebb0
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.2'
s.version = '0.3.3'
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' => 'support@rollbar.com' }
s.platform = :ios, '7.0'
s.source = { :git => 'https://github.com/author/RollbarReactNative.git', :tag => 'v0.3.2' }
s.source = { :git => 'https://github.com/author/RollbarReactNative.git', :tag => 'v0.3.3' }
s.requires_arc = true

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

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.2";
private static final String NOTIFIER_VERSION = "0.3.3";
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.2";
static NSString *const NOTIFIER_VERSION = @"0.3.3";
static NSString *const REACT_NATIVE = @"react-native";

+ (void)initWithAccessToken:(NSString *)accessToken {
Expand Down
2 changes: 1 addition & 1 deletion ios/rollbar-ios
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.2",
"version": "0.3.3",
"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.3",
"rollbar": "^2.4.4",
"url": "^0.11.0"
},
"devDependencies": {
Expand Down

0 comments on commit 952ebb0

Please sign in to comment.