Skip to content

Commit

Permalink
Merge pull request #141 from WideSpectrumComputing/master
Browse files Browse the repository at this point in the history
in preparation to v1.4.2 release
  • Loading branch information
akornich authored Nov 29, 2018
2 parents ae3a704 + 0f90788 commit 2db2c40
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

The change log has moved to this repo's [GitHub Releases Page](https://github.com/rollbar/rollbar-ios/releases).

**1.4.2**

- resolve #139: The Rollbar.zip's for version 1.4.0 and 1.4.1 don't include the framework
Adopting Xcode 10 build process changes within Distribution target's build script
- Numerous code fixes and clean-up
- Cleaned up build warnings
- resolve #137: Example of using Rollbar-iOS within a custom-built framework
- documentation updates

**1.4.1**

- resolve #130: Update podspec with the Deploy API related headers
Expand Down
4 changes: 2 additions & 2 deletions Rollbar.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Rollbar"
s.version = "1.4.1"
s.version = "1.4.2"
s.summary = "Objective-C library for crash reporting and logging with Rollbar."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Expand All @@ -14,7 +14,7 @@ Pod::Spec.new do |s|
s.author = { "Rollbar" => "[email protected]" }
s.social_media_url = "http://twitter.com/rollbar"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/rollbar/rollbar-ios.git", :tag => "v1.4.1", :submodules => true}
s.source = { :git => "https://github.com/rollbar/rollbar-ios.git", :tag => "v1.4.2", :submodules => true}

s.source_files = 'KSCrash/Source/KSCrash/**/*.{m,h,mm,c,cpp}',
'Rollbar/*.{h,m}'
Expand Down
2 changes: 1 addition & 1 deletion Rollbar/RollbarConfiguration.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#import "RollbarTelemetry.h"

static NSString *NOTIFIER_NAME = @"rollbar-ios";
static NSString *NOTIFIER_VERSION = @"1.4.1";
static NSString *NOTIFIER_VERSION = @"1.4.2";
static NSString *FRAMEWORK = @"ios";
static NSString *CONFIGURATION_FILENAME = @"rollbar.config";
static NSString *DEFAULT_ENDPOINT = @"https://api.rollbar.com/api/1/items/";
Expand Down

0 comments on commit 2db2c40

Please sign in to comment.