From afb8102be44272ffdc286df7ac546bf04b8e5d2b Mon Sep 17 00:00:00 2001 From: dorofeevs Date: Fri, 7 Oct 2022 14:24:36 +0400 Subject: [PATCH 1/2] Bump project version to 1.11.0 --- CHANGELOG.md | 3 ++- CrashReporter.xcodeproj/project.pbxproj | 4 ++-- PLCrashReporter.podspec | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dbf8b62..07e05842 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ # PLCrashReporter Change Log -## Version 1.10.3 (Under development) +## Version 1.11.0 * **[Feature]** Add Xcode 14 support. +* **[Improvement]** Fix analyzer warnings. ___ diff --git a/CrashReporter.xcodeproj/project.pbxproj b/CrashReporter.xcodeproj/project.pbxproj index c32888e3..b32b4124 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.10.2; + CURRENT_PROJECT_VERSION = 1.11.0; 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.10.2; + CURRENT_PROJECT_VERSION = 1.11.0; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; diff --git a/PLCrashReporter.podspec b/PLCrashReporter.podspec index 9f5de570..44000222 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.10.2' + spec.version = '1.11.0' 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.' From 31ad6b0d50d5377f5ea745221d6f45679f0370d7 Mon Sep 17 00:00:00 2001 From: dorofeevs Date: Fri, 7 Oct 2022 14:39:34 +0400 Subject: [PATCH 2/2] Update Changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07e05842..41ad25f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## Version 1.11.0 -* **[Feature]** Add Xcode 14 support. +* **[Feature]** Add Xcode 14 support. Xcode 11 and Xcode 12 are out of support now. * **[Improvement]** Fix analyzer warnings. ___