Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit 2271dfe

Browse files
committed
v0.1.6
1 parent d4e9c96 commit 2271dfe

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
**0.1.6**
4+
- Handle localized bundle names, ([pr#24](https://github.com/rollbar/rollbar-ios/pull/24)).
5+
36
**0.1.5**
47
- Fix compiler error when included in a Swift application, ([pr#16](https://github.com/rollbar/rollbar-ios/pull/16)).
58

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ Objective-C library for crash reporting and logging with [Rollbar](https://rollb
99

1010
In your Podfile:
1111

12-
pod "Rollbar", "~> 0.1.5"
12+
pod "Rollbar", "~> 0.1.6"
1313

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

1616
platform :ios, '7.0'
1717

1818
### Without Cocoapods
1919

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

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

Rollbar.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
#
1717

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

2222
s.description = <<-DESC
@@ -76,7 +76,7 @@ Pod::Spec.new do |s|
7676
# Supports git, hg, bzr, svn and HTTP.
7777
#
7878

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

8181

8282
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

Rollbar/RollbarNotifier.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include <sys/utsname.h>
1616

1717

18-
static NSString *NOTIFIER_VERSION = @"0.1.5";
18+
static NSString *NOTIFIER_VERSION = @"0.1.6";
1919
static NSString *QUEUED_ITEMS_FILE_NAME = @"rollbar.items";
2020
static NSString *STATE_FILE_NAME = @"rollbar.state";
2121

0 commit comments

Comments
 (0)