Skip to content

Commit

Permalink
Merge pull request #28 from fingerprintjs/version/2.2.0
Browse files Browse the repository at this point in the history
Version 2.2.0
  • Loading branch information
mgutski authored Jun 27, 2023
2 parents 8a6914e + d281fcc commit ceb8b84
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions FingerprintPro.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|
# Name and version
spec.name = 'FingerprintPro'
spec.version = '2.1.8'
spec.version = '2.2.0'

# License
spec.license = { type: 'Custom', file: 'LICENSE' }
Expand All @@ -25,11 +25,11 @@ Pod::Spec.new do |spec|
spec.ios.deployment_target = '12.0'
spec.tvos.deployment_target = '12.0'

spec.swift_versions = ['5.5', '5.6', '5.7']
spec.swift_versions = ['5.7', '5.8']

spec.vendored_frameworks = 'FingerprintPro.xcframework'

checksum = "7e372d8b43e4102bde42a300afb86852d610e3d770c34c7059cc22aa10db3f0f"
checksum = "dd5172878f002876409906b391f37def52592580a90ece9b4142135577c982e0"

spec.source = {
:http => "https://fpjs-public.s3.amazonaws.com/ios/#{spec.version}/FingerprintPro-#{spec.version}-#{checksum}.xcframework.zip"
Expand Down
13 changes: 7 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
// swift-tools-version:5.5
// swift-tools-version: 5.7

import PackageDescription

let checksum = "7e372d8b43e4102bde42a300afb86852d610e3d770c34c7059cc22aa10db3f0f"
let version = "2.1.8"
let checksum = "dd5172878f002876409906b391f37def52592580a90ece9b4142135577c982e0"
let version = "2.2.0"

let package = Package(
name: "FingerprintPro",
platforms: [
.iOS(.v12), .tvOS(.v12)
.iOS(.v12),
.tvOS(.v12),
],
products: [
.library(
name: "FingerprintPro",
targets: ["FingerprintPro"]
),
)
],
targets: [
.binaryTarget(
name: "FingerprintPro",
url: "https://fpjs-public.s3.amazonaws.com/ios/\(version)/FingerprintPro-\(version)-\(checksum).xcframework.zip",
checksum: checksum
),
)
]
)

0 comments on commit ceb8b84

Please sign in to comment.