Skip to content

Commit

Permalink
Update version format (#551)
Browse files Browse the repository at this point in the history
  • Loading branch information
GLinnik21 committed Aug 31, 2024
1 parent 09b770b commit 9629343
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Sources/KSCrashFilters/KSCrashReportFilterAppleFmt.m
Original file line number Diff line number Diff line change
Expand Up @@ -440,8 +440,8 @@ - (NSString *)headerStringForSystemInfo:(NSDictionary<NSString *, id> *)system
[system objectForKey:KSCrashField_ProcessID]];
[str appendFormat:@"Path: %@\n", executablePath];
[str appendFormat:@"Identifier: %@\n", [system objectForKey:KSCrashField_BundleID]];
[str appendFormat:@"Version: %@ (%@)\n", [system objectForKey:KSCrashField_BundleVersion],
[system objectForKey:KSCrashField_BundleShortVersion]];
[str appendFormat:@"Version: %@ (%@)\n", [system objectForKey:KSCrashField_BundleShortVersion],
[system objectForKey:KSCrashField_BundleVersion]];
[str appendFormat:@"Code Type: %@\n", cpuArchType];
[str appendFormat:@"Role: %@\n", processRole];
[str appendFormat:@"Parent Process: %@ [%@]\n", parentProcess,
Expand Down
2 changes: 1 addition & 1 deletion Sources/KSCrashRecording/KSCrashReportVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
#ifndef HDR_KSCrashReportVersion_h
#define HDR_KSCrashReportVersion_h

#define KSCRASH_REPORT_VERSION "3.4.0"
#define KSCRASH_REPORT_VERSION "3.4.1"

#endif /* HDR_KSCrashReportVersion_h */

0 comments on commit 9629343

Please sign in to comment.