diff --git a/CHANGELOG.md b/CHANGELOG.md index d66a4d63..d8c5f2fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ # PLCrashReporter Change Log -## Version 1.11.1 (Under development) +## Version 1.11.1 * **[Improvement]** Disable treating warnings as errors in code to avoid blockers when new Xcode warnings are introduced. +* **[Improvement]** Add caught exception logging to PLCrashReporter to generate reports from specific exception. ## Version 1.11.0 diff --git a/CrashReporter.xcodeproj/project.pbxproj b/CrashReporter.xcodeproj/project.pbxproj index 32ff7a5a..d32d4c4c 100644 --- a/CrashReporter.xcodeproj/project.pbxproj +++ b/CrashReporter.xcodeproj/project.pbxproj @@ -4075,7 +4075,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1.11.0; + CURRENT_PROJECT_VERSION = 1.11.1; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -4142,7 +4142,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1.11.0; + CURRENT_PROJECT_VERSION = 1.11.1; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; diff --git a/PLCrashReporter.podspec b/PLCrashReporter.podspec index 44000222..ca9d7ed9 100644 --- a/PLCrashReporter.podspec +++ b/PLCrashReporter.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |spec| spec.cocoapods_version = '>= 1.10' spec.name = 'PLCrashReporter' - spec.version = '1.11.0' + spec.version = '1.11.1' spec.summary = 'Reliable, open-source crash reporting for iOS, macOS and tvOS.' spec.description = 'PLCrashReporter is a reliable open source library that provides an in-process live crash reporting framework for use on iOS, macOS and tvOS. The library detects crashes and generates reports to help your investigation and troubleshooting with the information of application, system, process, thread, etc. as well as stack traces.'