Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Bump iOS min version in swift.package to v13 #9

Merged
merged 5 commits into from
Mar 8, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions MagicExt-OAuth.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Pod::Spec.new do |s|
s.name = 'MagicExt-OAuth'
s.version = '1.1.2'
s.version = '1.1.3'
s.summary = 'Magic IOS Extension - OAuth'

s.description = <<-DESC
Expand All @@ -16,8 +16,8 @@ TODO: Add long description of the pod here.
s.author = { 'Jerry Liu' => '[email protected]' }
s.source = { :git => 'https://github.com/magicLabs/magic-ios-ext.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '10.0'
# s.osx.deployment_target = '10.12'
s.ios.deployment_target = '13.0'
# s.osx.deployment_target = '10.15'

s.source_files = 'Sources/MagicExt-OAuth/**/*'

Expand Down
6 changes: 3 additions & 3 deletions MagicExt-OIDC.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Pod::Spec.new do |s|
s.name = 'MagicExt-OIDC'
s.version = '1.1.2'
s.version = '1.1.3'
s.summary = 'Magic IOS Extension - OIDC'

s.description = <<-DESC
Expand All @@ -16,8 +16,8 @@ TODO: Add long description of the pod here.
s.author = { 'Jerry Liu' => '[email protected]' }
s.source = { :git => 'https://github.com/magicLabs/magic-ios-ext.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '10.0'
# s.osx.deployment_target = '10.12'
s.ios.deployment_target = '13.0'
# s.osx.deployment_target = '10.15'

s.source_files = 'Sources/MagicExt-OIDC/**/*'

Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import PackageDescription
let package = Package(
name: "MagicExtensions",
platforms: [
.iOS(.v10),
.macOS(.v10_12)
.iOS(.v13),
.macOS(.v10_15)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
Expand Down