From b3bfb9e52e237208a840a4a088fa6dbba0034a3b Mon Sep 17 00:00:00 2001 From: Kevin McKee Date: Mon, 29 Sep 2025 08:10:37 -0700 Subject: [PATCH 1/4] Swift Tools 6.2 + Apple 26.0 APIs --- Package.swift | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Package.swift b/Package.swift index 8f3ef2d..fc4f96c 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version: 6.1 +// swift-tools-version: 6.2 // The swift-tools-version declares the minimum version of Swift required to build this package. import PackageDescription @@ -6,11 +6,11 @@ import PackageDescription let package = Package( name: "OAuthKit", platforms: [ - .iOS(.v18), - .macOS(.v15), - .tvOS(.v18), - .visionOS(.v2), - .watchOS(.v11) + .iOS(.v26), + .macOS(.v26), + .tvOS(.v26), + .visionOS(.v26), + .watchOS(.v26) ], products: [ .library( @@ -32,7 +32,7 @@ let package = Package( .testTarget( name: "OAuthKitTests", dependencies: ["OAuthKit"], - resources: [.process("Resources/")] + resources: [.process("Resources")] ) ] ) From 96b91342371003fa4c028df64798fe6a416a14c5 Mon Sep 17 00:00:00 2001 From: Kevin McKee Date: Mon, 29 Sep 2025 08:16:04 -0700 Subject: [PATCH 2/4] README updates --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a848029..21b0700 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ ![Build](https://github.com/codefiesta/OAuthKit/actions/workflows/swift.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-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) ![Code Coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/codefiesta/87655b6e3c89b9198287b2fefbfa641f/raw/oauthkit-coverage.json) @@ -36,11 +36,11 @@ Key features include: ## OAuthKit Installation -OAuthKit can be installed using [Swift Package Manager](https://www.swift.org/documentation/package-manager/): +OAuthKit can be installed using [Swift Package Manager](https://www.swift.org/documentation/package-manager/). If you need to build with Swift Tools 6.1 and Apple APIs > `26.0` use version `1.5.1`. ```swift dependencies: [ - .package(url: "https://github.com/codefiesta/OAuthKit", from: "1.5.0") + .package(url: "https://github.com/codefiesta/OAuthKit", from: "2.0.0") ] ``` From 28afb05f0961e2b0bd7b3d11a736a5fa4a9dbbba Mon Sep 17 00:00:00 2001 From: Kevin McKee Date: Mon, 29 Sep 2025 08:18:58 -0700 Subject: [PATCH 3/4] README updates --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 21b0700..0e26e65 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Key features include: ## OAuthKit Installation -OAuthKit can be installed using [Swift Package Manager](https://www.swift.org/documentation/package-manager/). If you need to build with Swift Tools 6.1 and Apple APIs > `26.0` use version `1.5.1`. +OAuthKit can be installed using [Swift Package Manager](https://www.swift.org/documentation/package-manager/). If you need to build with Swift Tools `6.1` and Apple APIs > `26.0` use version [1.5.1](https://github.com/codefiesta/OAuthKit/releases/tag/1.5.1). ```swift dependencies: [ From 107ccdcba972593ae7ecaff7fc7ee94dd802e1db Mon Sep 17 00:00:00 2001 From: Kevin McKee Date: Mon, 29 Sep 2025 08:20:32 -0700 Subject: [PATCH 4/4] WIP --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0e26e65..fa25387 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![Build](https://github.com/codefiesta/OAuthKit/actions/workflows/swift.yml/badge.svg) -![Xcode 26.0+](https://img.shields.io/badge/Xcode-26.0%2B-gold.svg) -![Swift 6.2+](https://img.shields.io/badge/Swift-6.2%2B-tomato.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)