diff --git a/CHANGELOG.md b/CHANGELOG.md index 06f9b1d..6253b09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Rollbar.podspec b/Rollbar.podspec index 535777a..499bb70 100644 --- a/Rollbar.podspec +++ b/Rollbar.podspec @@ -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. @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.author = { "Rollbar" => "support@rollbar.com" } 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}' diff --git a/Rollbar/RollbarConfiguration.m b/Rollbar/RollbarConfiguration.m index a504fc5..4116d0d 100644 --- a/Rollbar/RollbarConfiguration.m +++ b/Rollbar/RollbarConfiguration.m @@ -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/";