From c844941d0b7fc95f136002485ce6da83d98e56b1 Mon Sep 17 00:00:00 2001 From: Kevin McKee Date: Thu, 9 Oct 2025 09:37:14 -0700 Subject: [PATCH 1/3] Update minimum deployment targets to 26.0 and bumping OAuthKit to 2.0.0 --- OAuthSample.xcodeproj/project.pbxproj | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/OAuthSample.xcodeproj/project.pbxproj b/OAuthSample.xcodeproj/project.pbxproj index 2b27bb3..731ff12 100644 --- a/OAuthSample.xcodeproj/project.pbxproj +++ b/OAuthSample.xcodeproj/project.pbxproj @@ -433,10 +433,10 @@ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - IPHONEOS_DEPLOYMENT_TARGET = 18.0; + IPHONEOS_DEPLOYMENT_TARGET = 26.0; LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks"; "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 15.0; + MACOSX_DEPLOYMENT_TARGET = 26.0; MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.codefiesta.OAuthSample; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -446,8 +446,8 @@ SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2,3,7"; - TVOS_DEPLOYMENT_TARGET = 18.0; - XROS_DEPLOYMENT_TARGET = 2.0; + TVOS_DEPLOYMENT_TARGET = 26.0; + XROS_DEPLOYMENT_TARGET = 26.0; }; name = Debug; }; @@ -478,10 +478,10 @@ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - IPHONEOS_DEPLOYMENT_TARGET = 18.0; + IPHONEOS_DEPLOYMENT_TARGET = 26.0; LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks"; "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 15.0; + MACOSX_DEPLOYMENT_TARGET = 26.0; MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.codefiesta.OAuthSample; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -491,8 +491,8 @@ SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2,3,7"; - TVOS_DEPLOYMENT_TARGET = 18.0; - XROS_DEPLOYMENT_TARGET = 2.0; + TVOS_DEPLOYMENT_TARGET = 26.0; + XROS_DEPLOYMENT_TARGET = 26.0; }; name = Release; }; @@ -591,7 +591,7 @@ repositoryURL = "https://github.com/codefiesta/OAuthKit.git"; requirement = { kind = upToNextMajorVersion; - minimumVersion = 1.5.0; + minimumVersion = 2.0.0; }; }; /* End XCRemoteSwiftPackageReference section */ From 8a8303653dfad3972cf93eb8ffc8037cffeb9513 Mon Sep 17 00:00:00 2001 From: Kevin McKee Date: Thu, 9 Oct 2025 09:41:19 -0700 Subject: [PATCH 2/3] README updates --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 9d569e7..de075f0 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ ![Build](https://github.com/codefiesta/OAuthSample/actions/workflows/xcodebuild.yml/badge.svg) -![Xcode 26.0+](https://img.shields.io/badge/Xcode-26.0%2B-gold.svg) -![Swift 6.1+](https://img.shields.io/badge/Swift-6.1%2B-tomato.svg) -![iOS 18.0+](https://img.shields.io/badge/iOS-18.0%2B-crimson.svg) -![macOS 15.0+](https://img.shields.io/badge/macOS-15.0%2B-skyblue.svg) -![tvOS 18.0+](https://img.shields.io/badge/tvOS-18.0%2B-blue.svg) -![visionOS 2.0+](https://img.shields.io/badge/visionOS-2.0%2B-violet.svg) -![watchOS 11.0+](https://img.shields.io/badge/watchOS-11.0%2B-magenta.svg) +![Swift 6.2+](https://img.shields.io/badge/Swift-6.2%2B-gold.svg) +![Xcode 26.0+](https://img.shields.io/badge/Xcode-26.0%2B-tomato.svg) +![iOS 26.0+](https://img.shields.io/badge/iOS-26.0%2B-crimson.svg) +![macOS 26.0+](https://img.shields.io/badge/macOS-26.0%2B-skyblue.svg) +![tvOS 26.0+](https://img.shields.io/badge/tvOS-26.0%2B-blue.svg) +![visionOS 26.0+](https://img.shields.io/badge/visionOS-26.0%2B-violet.svg) +![watchOS 26.0+](https://img.shields.io/badge/watchOS-26.0%2B-magenta.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-indigo.svg)](https://opensource.org/licenses/MIT) # OAuthKit Sample From 5a12fc06d468617330e66b3b19b05490127d6ac3 Mon Sep 17 00:00:00 2001 From: Kevin McKee Date: Thu, 9 Oct 2025 09:47:54 -0700 Subject: [PATCH 3/3] WatchOS deployment target bump --- OAuthSample.xcodeproj/project.pbxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OAuthSample.xcodeproj/project.pbxproj b/OAuthSample.xcodeproj/project.pbxproj index 731ff12..0e168d5 100644 --- a/OAuthSample.xcodeproj/project.pbxproj +++ b/OAuthSample.xcodeproj/project.pbxproj @@ -520,7 +520,7 @@ SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 4; - WATCHOS_DEPLOYMENT_TARGET = 11.5; + WATCHOS_DEPLOYMENT_TARGET = 26.0; }; name = Debug; }; @@ -549,7 +549,7 @@ SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; - WATCHOS_DEPLOYMENT_TARGET = 11.5; + WATCHOS_DEPLOYMENT_TARGET = 26.0; }; name = Release; };