From 90371f4e972b44cc45724982ee4582a15b9de495 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 4 Sep 2024 08:31:08 +0000 Subject: [PATCH] Update version to 2.0.0-alpha.7 --- KSCrash.podspec | 2 +- README.md | 4 ++-- Sources/KSCrashRecording/KSCrash.m | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/KSCrash.podspec b/KSCrash.podspec index 01672dac..de832735 100644 --- a/KSCrash.podspec +++ b/KSCrash.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| IOS_DEPLOYMENT_TARGET = '12.0' unless defined? IOS_DEPLOYMENT_TARGET s.name = "KSCrash" - s.version = "2.0.0-alpha.6" + s.version = "2.0.0-alpha.7" s.summary = "The Ultimate iOS Crash Reporter" s.homepage = "https://github.com/kstenerud/KSCrash" s.license = { :type => 'KSCrash license agreement', :file => 'LICENSE' } diff --git a/README.md b/README.md index d3a965a1..340062b6 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Add the following to your `Package.swift` file: ```swift dependencies: [ - .package(url: "https://github.com/kstenerud/KSCrash.git", .upToNextMajor(from: "2.0.0-alpha.6")) + .package(url: "https://github.com/kstenerud/KSCrash.git", .upToNextMajor(from: "2.0.0-alpha.7")) ] ``` @@ -94,7 +94,7 @@ targets: [ 1. Add to your `Podfile`: ```ruby - pod 'KSCrash', '~> 2.0.0-alpha.6' + pod 'KSCrash', '~> 2.0.0-alpha.7' ``` 2. Run: diff --git a/Sources/KSCrashRecording/KSCrash.m b/Sources/KSCrashRecording/KSCrash.m index ea37384f..c3a8b405 100644 --- a/Sources/KSCrashRecording/KSCrash.m +++ b/Sources/KSCrashRecording/KSCrash.m @@ -437,4 +437,4 @@ + (void)applicationWillTerminate const double KSCrashFrameworkVersionNumber = 2.0000; //! Project version string for KSCrashFramework. -const unsigned char KSCrashFrameworkVersionString[] = "2.0.0-alpha.6"; +const unsigned char KSCrashFrameworkVersionString[] = "2.0.0-alpha.7";