From 87e13ba7d9eccb84ec5a9b9465425d0fc1027484 Mon Sep 17 00:00:00 2001 From: Arian Flores Date: Tue, 7 Mar 2023 17:19:24 -0800 Subject: [PATCH 1/5] Bump iOS min version in swift.package to v13 --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index c1f8e07..b352c0f 100644 --- a/Package.swift +++ b/Package.swift @@ -6,7 +6,7 @@ import PackageDescription let package = Package( name: "MagicExtensions", platforms: [ - .iOS(.v10), + .iOS(.v13), .macOS(.v10_12) ], products: [ From df218df35aa2a250de3bb82a7d7e378b28d7601d Mon Sep 17 00:00:00 2001 From: Arian Flores Date: Tue, 7 Mar 2023 17:20:56 -0800 Subject: [PATCH 2/5] Bump Versions --- MagicExt-OAuth.podspec | 4 ++-- MagicExt-OIDC.podspec | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MagicExt-OAuth.podspec b/MagicExt-OAuth.podspec index 39fc613..615a3a4 100644 --- a/MagicExt-OAuth.podspec +++ b/MagicExt-OAuth.podspec @@ -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 @@ -16,7 +16,7 @@ TODO: Add long description of the pod here. s.author = { 'Jerry Liu' => 'jerry@magic.link' } 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.ios.deployment_target = '13.0' # s.osx.deployment_target = '10.12' s.source_files = 'Sources/MagicExt-OAuth/**/*' diff --git a/MagicExt-OIDC.podspec b/MagicExt-OIDC.podspec index 99962f9..3b356c9 100644 --- a/MagicExt-OIDC.podspec +++ b/MagicExt-OIDC.podspec @@ -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 @@ -16,7 +16,7 @@ TODO: Add long description of the pod here. s.author = { 'Jerry Liu' => 'jerry@magic.link' } 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.ios.deployment_target = '13.0' # s.osx.deployment_target = '10.12' s.source_files = 'Sources/MagicExt-OIDC/**/*' From 83a10a78c44c962cf313ebabf16ab4aaf5810c92 Mon Sep 17 00:00:00 2001 From: Arian Flores Date: Tue, 7 Mar 2023 17:42:58 -0800 Subject: [PATCH 3/5] Update MacOS version --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index b352c0f..c5fcfec 100644 --- a/Package.swift +++ b/Package.swift @@ -7,7 +7,7 @@ let package = Package( name: "MagicExtensions", platforms: [ .iOS(.v13), - .macOS(.v10_12) + .macOS(.v10_15) ], products: [ // Products define the executables and libraries a package produces, and make them visible to other packages. From 383ab1e3ca64c27c9be8805203f06bbfe2b47e5c Mon Sep 17 00:00:00 2001 From: Arian Flores Date: Tue, 7 Mar 2023 17:44:28 -0800 Subject: [PATCH 4/5] Fix commented out verison --- MagicExt-OAuth.podspec | 2 +- MagicExt-OIDC.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MagicExt-OAuth.podspec b/MagicExt-OAuth.podspec index 615a3a4..bf5ed22 100644 --- a/MagicExt-OAuth.podspec +++ b/MagicExt-OAuth.podspec @@ -17,7 +17,7 @@ TODO: Add long description of the pod here. 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 = '13.0' -# s.osx.deployment_target = '10.12' +# s.osx.deployment_target = '10.15' s.source_files = 'Sources/MagicExt-OAuth/**/*' diff --git a/MagicExt-OIDC.podspec b/MagicExt-OIDC.podspec index 3b356c9..720696d 100644 --- a/MagicExt-OIDC.podspec +++ b/MagicExt-OIDC.podspec @@ -17,7 +17,7 @@ TODO: Add long description of the pod here. 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 = '13.0' -# s.osx.deployment_target = '10.12' +# s.osx.deployment_target = '10.15' s.source_files = 'Sources/MagicExt-OIDC/**/*' From ca39eb29a8bff5133053e1aad16dbcc4ebea33bc Mon Sep 17 00:00:00 2001 From: Arian Flores Date: Wed, 8 Mar 2023 09:29:28 -0800 Subject: [PATCH 5/5] Bump to Major Version --- MagicExt-OAuth.podspec | 2 +- MagicExt-OIDC.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MagicExt-OAuth.podspec b/MagicExt-OAuth.podspec index bf5ed22..878000b 100644 --- a/MagicExt-OAuth.podspec +++ b/MagicExt-OAuth.podspec @@ -4,7 +4,7 @@ Pod::Spec.new do |s| s.name = 'MagicExt-OAuth' - s.version = '1.1.3' + s.version = '2.0.0' s.summary = 'Magic IOS Extension - OAuth' s.description = <<-DESC diff --git a/MagicExt-OIDC.podspec b/MagicExt-OIDC.podspec index 720696d..f0d638a 100644 --- a/MagicExt-OIDC.podspec +++ b/MagicExt-OIDC.podspec @@ -4,7 +4,7 @@ Pod::Spec.new do |s| s.name = 'MagicExt-OIDC' - s.version = '1.1.3' + s.version = '2.0.0' s.summary = 'Magic IOS Extension - OIDC' s.description = <<-DESC