Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rokob committed Jan 16, 2019
1 parent 90d9c09 commit e900b7f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 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.4.0'
s.version = '0.5.0'
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.4.0' }
s.source = { :git => 'https://github.com/author/RollbarReactNative.git', :tag => 'v0.5.0' }
s.requires_arc = true

s.dependency 'React'
s.dependency 'Rollbar', '~> 1.4.2'
s.dependency 'Rollbar', '~> 1.5.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.4.0";
private static final String NOTIFIER_VERSION = "0.5.0";
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.4.0";
static NSString *const NOTIFIER_VERSION = @"0.5.0";
static NSString *const REACT_NATIVE = @"react-native";

+ (void)initWithAccessToken:(NSString *)accessToken {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rollbar-react-native",
"version": "0.4.0",
"version": "0.5.0",
"description": "Library for reporting errors to Rollbar from React Native apps",
"main": "index.js",
"repository": "https://github.com/rollbar/rollbar-react-native.git",
Expand Down

0 comments on commit e900b7f

Please sign in to comment.