From 70d52565483775a3f62c3d35a00e50203be781c0 Mon Sep 17 00:00:00 2001 From: Harry Chen Date: Sat, 21 Dec 2024 14:35:08 +0800 Subject: [PATCH] darwin: bump version & dependencies Signed-off-by: Harry Chen --- darwin/ccid.podspec | 2 +- darwin/ccid/Package.swift | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/darwin/ccid.podspec b/darwin/ccid.podspec index 3aecb54..4983f63 100644 --- a/darwin/ccid.podspec +++ b/darwin/ccid.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'ccid' - s.version = '0.1.5' + s.version = '0.1.6' s.summary = 'Flutter CCID Plugin.' s.description = <<-DESC A Flutter plugin for CCID support on iOS and macOS. diff --git a/darwin/ccid/Package.swift b/darwin/ccid/Package.swift index 606e0ac..7eef79a 100644 --- a/darwin/ccid/Package.swift +++ b/darwin/ccid/Package.swift @@ -6,8 +6,8 @@ import PackageDescription let package = Package( name: "ccid", platforms: [ - .iOS("12.0"), - .macOS("10.14") + .iOS(.v13), + .macOS(.v10_13) ], products: [ .library(name: "ccid", targets: ["ccid"]) @@ -21,4 +21,4 @@ let package = Package( ] ) ] -) \ No newline at end of file +)