From df01a624c3f88505d90388c8dddc2dd39fbd6e1c Mon Sep 17 00:00:00 2001 From: Alexande B Date: Mon, 26 Aug 2024 12:58:32 +0200 Subject: [PATCH 1/4] chore: add Xcode 16.x to test matrix --- .github/workflows/workflow.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 3da9673..c9e0575 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -210,6 +210,8 @@ jobs: - xcode: '15.2' experimental: false - xcode: '15.4' + experimental: false + - xcode: '16.1' experimental: true steps: - uses: actions/checkout@v4 From 7cb1f1c9e6d706cc11aeb64c09aa5e71507b8ddd Mon Sep 17 00:00:00 2001 From: Alexande B Date: Mon, 26 Aug 2024 14:29:47 +0200 Subject: [PATCH 2/4] chore: replace deprecated @UIApplicationMain with @main --- Example/HCaptcha/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Example/HCaptcha/AppDelegate.swift b/Example/HCaptcha/AppDelegate.swift index fba3b84..4ac0aac 100644 --- a/Example/HCaptcha/AppDelegate.swift +++ b/Example/HCaptcha/AppDelegate.swift @@ -8,7 +8,7 @@ import UIKit -@UIApplicationMain +@main class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? From 5c499aa547144aaa7efe5407eaed86c1821351c8 Mon Sep 17 00:00:00 2001 From: Alexande B Date: Tue, 27 Aug 2024 14:38:08 +0200 Subject: [PATCH 3/4] chore: add Xcode 14 to test matrix and remove some of 15.x --- .github/workflows/workflow.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index c9e0575..4f9e281 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -204,12 +204,10 @@ jobs: strategy: fail-fast: false matrix: - xcode: [ '15.1' ] + xcode: [ '15.4' ] experimental: [ false ] include: - - xcode: '15.2' - experimental: false - - xcode: '15.4' + - xcode: '14.3.1' experimental: false - xcode: '16.1' experimental: true From a6451d611a7cbb7f0e32aa0340ab006acb11158d Mon Sep 17 00:00:00 2001 From: Alexande B Date: Tue, 27 Aug 2024 14:42:13 +0200 Subject: [PATCH 4/4] docs: add iOS and Xcode version badges --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c2aed5c..c14f550 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,9 @@ [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-orange.svg)](https://github.com/Carthage/Carthage) [![Version](https://img.shields.io/cocoapods/v/HCaptcha)](http://cocoapods.org/pods/HCaptcha) -[![Platform](https://img.shields.io/badge/Platform-ios-blue)](http://cocoapods.org/pods/HCaptcha) -[![Requirements](https://img.shields.io/badge/iOS-%3E=12.0-blue.svg)](https://developer.apple.com/support/app-store/) +[![Platform](https://img.shields.io/badge/Platform-iOS-blue)](http://cocoapods.org/pods/HCaptcha) +[![iOS](https://img.shields.io/badge/iOS-12.0%20--%2018.0-blue.svg)](https://developer.apple.com/support/app-store/) +[![Xcode](https://img.shields.io/badge/Xcode-14.3.1%20--%2016.1-blue.svg)](https://developer.apple.com/xcode/) [![Swift Package Manager compatible](https://img.shields.io/badge/Swift%20Package%20Manager-compatible-brightgreen.svg)](https://github.com/apple/swift-package-manager) [![Build](https://github.com/hCaptcha/HCaptcha-ios-sdk/actions/workflows/workflow.yml/badge.svg)](https://github.com/hCaptcha/HCaptcha-ios-sdk/actions/workflows/workflow.yml)