chore: bump build number to 3 (0.1.0 build 3)

CURRENT_PROJECT_VERSION 2 -> 3 for the Outpost app target only
(Debug + Release), test targets left alone. OutpostVersion.swift's
buildNumber fallback and doc-comment updated to match.
This commit is contained in:
2026-08-21 03:41:03 +01:00
parent 71070daf86
commit 289e3062a1
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -402,7 +402,7 @@
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2; CURRENT_PROJECT_VERSION = 3;
DEVELOPMENT_TEAM = CW6GQT9SK5; DEVELOPMENT_TEAM = CW6GQT9SK5;
ENABLE_APP_SANDBOX = YES; ENABLE_APP_SANDBOX = YES;
ENABLE_HARDENED_RUNTIME = YES; ENABLE_HARDENED_RUNTIME = YES;
@@ -454,7 +454,7 @@
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2; CURRENT_PROJECT_VERSION = 3;
DEVELOPMENT_TEAM = CW6GQT9SK5; DEVELOPMENT_TEAM = CW6GQT9SK5;
ENABLE_APP_SANDBOX = YES; ENABLE_APP_SANDBOX = YES;
ENABLE_HARDENED_RUNTIME = YES; ENABLE_HARDENED_RUNTIME = YES;
+2 -2
View File
@@ -17,7 +17,7 @@ enum OutpostVersion {
} }
static var buildNumber: String { static var buildNumber: String {
Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as? String ?? "2" Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as? String ?? "3"
} }
/// e.g. `"0.1.0"` for compact display (sidebar footer). /// e.g. `"0.1.0"` for compact display (sidebar footer).
@@ -26,7 +26,7 @@ enum OutpostVersion {
return "\(shortVersion)\(stageSuffix)" return "\(shortVersion)\(stageSuffix)"
} }
/// e.g. `"Version 0.1.0 (2)"` for the About page. /// e.g. `"Version 0.1.0 (3)"` for the About page.
static var fullVersionString: String { static var fullVersionString: String {
"Version \(displayString) (\(buildNumber))" "Version \(displayString) (\(buildNumber))"
} }