From d20b63659cb6843429a23689d04244d5067852ec Mon Sep 17 00:00:00 2001 From: Mitchell Duncan Date: Mon, 31 Aug 2020 13:47:12 +1200 Subject: [PATCH 1/2] Remove beta flag and update the changelog Remove beta flag and update the changelog --- CHANGELOG.md | 3 +++ Sources/Raygun/RaygunDefines.h | 2 +- raygun4apple.podspec | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d162a69..b245d7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.4.1 +- Prefixed KSCrash classes and methods to avoid conflicts with external sources + ## 1.4.0 - CocoaPods support - New sample app projects diff --git a/Sources/Raygun/RaygunDefines.h b/Sources/Raygun/RaygunDefines.h index 8754d31..e646bf8 100644 --- a/Sources/Raygun/RaygunDefines.h +++ b/Sources/Raygun/RaygunDefines.h @@ -41,7 +41,7 @@ #define RAYGUN_CAN_USE_UIKIT 0 #endif -static NSString *_Nonnull const kRaygunClientVersion = @"1.4.1-beta"; +static NSString *_Nonnull const kRaygunClientVersion = @"1.4.1"; static NSString *_Nonnull const kRaygunIdentifierUserDefaultsKey = @"com.raygun.identifier"; static NSString *_Nonnull const kRaygunSessionLastSeenDefaultsKey = @"com.raygun.session.lastseen"; diff --git a/raygun4apple.podspec b/raygun4apple.podspec index 28ae176..0b1c4ac 100644 --- a/raygun4apple.podspec +++ b/raygun4apple.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'raygun4apple' - s.version = '1.4.1-beta' + s.version = '1.4.1' s.summary = 'Raygun client for Apple platforms' s.homepage = 'https://raygun.com' s.authors = { 'Raygun' => 'hello@raygun.com' } From 0ea9cd888cc9db72478acf1350c206806bb6f8a1 Mon Sep 17 00:00:00 2001 From: Mitchell Duncan Date: Mon, 31 Aug 2020 14:17:38 +1200 Subject: [PATCH 2/2] Exposing the RaygunCrashReportConverter class for external use Exposing the RaygunCrashReportConverter class for external use --- CHANGELOG.md | 1 + raygun4apple.podspec | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b245d7e..c791ab9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## 1.4.1 - Prefixed KSCrash classes and methods to avoid conflicts with external sources +- The RaygunCrashReportConverter class is now public ## 1.4.0 - CocoaPods support diff --git a/raygun4apple.podspec b/raygun4apple.podspec index 0b1c4ac..a232452 100644 --- a/raygun4apple.podspec +++ b/raygun4apple.podspec @@ -25,6 +25,7 @@ Pod::Spec.new do |s| 'Sources/**/RaygunClient.h', 'Sources/**/RaygunMessageDetails.h', 'Sources/**/RaygunMessage.h', + 'Sources/**/RaygunCrashReportConverter.h', s.ios.public_header_files = 'raygun4apple-iOS/raygun4apple_iOS.h' s.tvos.public_header_files = 'raygun4apple-tvOS/raygun4apple_tvOS.h' s.osx.public_header_files = 'raygun4apple-macOS/raygun4apple_macOS.h'