From 71070daf86deb4735ed7eb0ad63dcc2ec8d060df Mon Sep 17 00:00:00 2001 From: psmattas Date: Fri, 21 Aug 2026 02:55:19 +0100 Subject: [PATCH] chore: bump build number to 2 (0.1.0 build 2) CURRENT_PROJECT_VERSION 1 -> 2 for the Outpost app target (Debug + Release only, test targets left alone, same scope as the MARKETING_VERSION bump). OutpostVersion.swift's buildNumber fallback and doc-comment example updated to match. --- Outpost.xcodeproj/project.pbxproj | 4 ++-- Outpost/Support/OutpostVersion.swift | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Outpost.xcodeproj/project.pbxproj b/Outpost.xcodeproj/project.pbxproj index f623431..ce312af 100644 --- a/Outpost.xcodeproj/project.pbxproj +++ b/Outpost.xcodeproj/project.pbxproj @@ -402,7 +402,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_TEAM = CW6GQT9SK5; ENABLE_APP_SANDBOX = YES; ENABLE_HARDENED_RUNTIME = YES; @@ -454,7 +454,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_TEAM = CW6GQT9SK5; ENABLE_APP_SANDBOX = YES; ENABLE_HARDENED_RUNTIME = YES; diff --git a/Outpost/Support/OutpostVersion.swift b/Outpost/Support/OutpostVersion.swift index 8245ce2..6c837de 100644 --- a/Outpost/Support/OutpostVersion.swift +++ b/Outpost/Support/OutpostVersion.swift @@ -17,7 +17,7 @@ enum OutpostVersion { } static var buildNumber: String { - Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as? String ?? "1" + Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as? String ?? "2" } /// e.g. `"0.1.0"` — for compact display (sidebar footer). @@ -26,7 +26,7 @@ enum OutpostVersion { return "\(shortVersion)\(stageSuffix)" } - /// e.g. `"Version 0.1.0 (1)"` — for the About page. + /// e.g. `"Version 0.1.0 (2)"` — for the About page. static var fullVersionString: String { "Version \(displayString) (\(buildNumber))" }