diff --git a/KSCrash.podspec b/KSCrash.podspec index 303cfdd3..c85e8ea7 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.4" + s.version = "2.0.0-alpha.5" 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 5a8b80a8..b5c54f1f 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.4")) + .package(url: "https://github.com/kstenerud/KSCrash.git", .upToNextMajor(from: "2.0.0-alpha.5")) ] ``` @@ -94,7 +94,7 @@ targets: [ 1. Add to your `Podfile`: ```ruby - pod 'KSCrash', '~> 2.0.0-alpha.4' + pod 'KSCrash', '~> 2.0.0-alpha.5' ``` 2. Run: diff --git a/Sources/KSCrashRecording/KSCrash.m b/Sources/KSCrashRecording/KSCrash.m index 8bc9245e..fe719dbe 100644 --- a/Sources/KSCrashRecording/KSCrash.m +++ b/Sources/KSCrashRecording/KSCrash.m @@ -572,4 +572,4 @@ + (void)applicationWillTerminate const double KSCrashFrameworkVersionNumber = 2.0000; //! Project version string for KSCrashFramework. -const unsigned char KSCrashFrameworkVersionString[] = "2.0.0-alpha.4"; +const unsigned char KSCrashFrameworkVersionString[] = "2.0.0-alpha.5";