Skip to content

Commit

Permalink
v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ezarowny committed Mar 23, 2016
1 parent d4e9c96 commit 2271dfe
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

**0.1.6**
- Handle localized bundle names, ([pr#24](https://github.com/rollbar/rollbar-ios/pull/24)).

**0.1.5**
- Fix compiler error when included in a Swift application, ([pr#16](https://github.com/rollbar/rollbar-ios/pull/16)).

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ Objective-C library for crash reporting and logging with [Rollbar](https://rollb

In your Podfile:

pod "Rollbar", "~> 0.1.5"
pod "Rollbar", "~> 0.1.6"

Make sure to declare your platform as `ios` at the top of your Podfile. E.g:

platform :ios, '7.0'

### Without Cocoapods

1. Download the [Rollbar framework](https://github.com/rollbar/rollbar-ios/releases/download/v0.1.5/Rollbar.zip).
1. Download the [Rollbar framework](https://github.com/rollbar/rollbar-ios/releases/download/v0.1.6/Rollbar.zip).

2. Extract the Rollbar directory in the zip file to your Xcode project directory.

Expand Down
4 changes: 2 additions & 2 deletions Rollbar.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "Rollbar"
s.version = "0.1.5"
s.version = "0.1.6"
s.summary = "Objective-C library for crash reporting and logging with Rollbar."

s.description = <<-DESC
Expand Down Expand Up @@ -76,7 +76,7 @@ Pod::Spec.new do |s|
# Supports git, hg, bzr, svn and HTTP.
#

s.source = { :git => "https://github.com/rollbar/rollbar-ios.git", :tag => "v0.1.5" }
s.source = { :git => "https://github.com/rollbar/rollbar-ios.git", :tag => "v0.1.6" }


# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
Expand Down
2 changes: 1 addition & 1 deletion Rollbar/RollbarNotifier.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <sys/utsname.h>


static NSString *NOTIFIER_VERSION = @"0.1.5";
static NSString *NOTIFIER_VERSION = @"0.1.6";
static NSString *QUEUED_ITEMS_FILE_NAME = @"rollbar.items";
static NSString *STATE_FILE_NAME = @"rollbar.state";

Expand Down

0 comments on commit 2271dfe

Please sign in to comment.