Skip to content

Commit

Permalink
Merge pull request #55 from tkey/bump_minimum_version
Browse files Browse the repository at this point in the history
feat: update minimum ios version to 14
  • Loading branch information
himanshuchawla009 authored Nov 4, 2024
2 parents 88cda84 + 6d130a8 commit 384f5d9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on:
push:
branches:
- master
- main
pull_request:
types:
- opened
Expand All @@ -17,6 +17,6 @@ jobs:
- name: xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "14.2.0"
xcode-version: "15.4.0"
- name: package
run: xcodebuild test -scheme tkey-swift -destination "platform=iOS Simulator,OS=16.2,name=iPhone 14" COMPILER_INDEX_STORE_ENABLE=NO
run: xcodebuild test -scheme tkey-swift -destination "platform=iOS Simulator,OS=17.2,name=iPhone 15" COMPILER_INDEX_STORE_ENABLE=NO
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "tkey-swift",
platforms: [
.iOS(SupportedPlatform.IOSVersion.v13), .macOS(.v10_15)
.iOS(.v14), .macOS(.v10_15)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
Expand Down
2 changes: 1 addition & 1 deletion tkey-swift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "tkey-swift"
spec.version = "1.0.0"
spec.version = "2.0.0"
spec.platform = :ios, "14.0"
spec.summary = "SDK allows you to create threshold key setup natively"
spec.homepage = "https://web3auth.io/"
Expand Down

0 comments on commit 384f5d9

Please sign in to comment.