From 4391d1633e11e2b762953825f5402f2068390c88 Mon Sep 17 00:00:00 2001 From: Tobi Omotayo Date: Fri, 20 Dec 2024 19:15:31 +0100 Subject: [PATCH] chore: release v10.3.3 (#274) * update changelog. * bump version number * run pod install. --- CHANGELOG.md | 8 ++++++++ Example/Podfile.lock | 4 ++-- SmileID.podspec | 4 ++-- Sources/SmileID/Classes/SmileID.swift | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f362fa1..109d44fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Release Notes +## 10.3.3 + +### Changed +* Device orientation instruction text to match Android + +### Removed +* Pre-compiled `SelfieQualityModel.mlmodelc` file used for selfie quality check was producing files not supported by SPM. + ## 10.3.2 ### Fixed diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 45b2237f..75b1d5a3 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -12,7 +12,7 @@ PODS: - Sentry (8.36.0): - Sentry/Core (= 8.36.0) - Sentry/Core (8.36.0) - - SmileID (10.3.2): + - SmileID (10.3.3): - FingerprintJS - lottie-ios (~> 4.4.2) - ZIPFoundation (~> 0.9) @@ -51,7 +51,7 @@ SPEC CHECKSUMS: lottie-ios: fcb5e73e17ba4c983140b7d21095c834b3087418 netfox: 9d5cc727fe7576c4c7688a2504618a156b7d44b7 Sentry: f8374b5415bc38dfb5645941b3ae31230fbeae57 - SmileID: f9d28a2a9edda49859a2a1c4a76fc166131bf8e3 + SmileID: efa20868a54907b71202c91396377f495e949bb7 SwiftLint: 3fe909719babe5537c552ee8181c0031392be933 ZIPFoundation: b8c29ea7ae353b309bc810586181fd073cb3312c diff --git a/SmileID.podspec b/SmileID.podspec index 63ad7aa1..b47b612f 100644 --- a/SmileID.podspec +++ b/SmileID.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'SmileID' - s.version = '10.3.2' + s.version = '10.3.3' s.summary = 'The Official Smile Identity iOS SDK.' s.homepage = 'https://docs.usesmileid.com/integration-options/mobile/ios-v10-beta' s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'Japhet' => 'japhet@usesmileid.com', 'Juma Allan' => 'juma@usesmileid.com', 'Vansh Gandhi' => 'vansh@usesmileid.com', 'Tobi Omotayo' => 'oluwatobi@usesmileid.com' } - s.source = { :git => "https://github.com/smileidentity/ios.git", :tag => "v10.3.2" } + s.source = { :git => "https://github.com/smileidentity/ios.git", :tag => "v10.3.3" } s.ios.deployment_target = '13.0' s.dependency 'ZIPFoundation', '~> 0.9' s.dependency 'FingerprintJS' diff --git a/Sources/SmileID/Classes/SmileID.swift b/Sources/SmileID/Classes/SmileID.swift index 16d3cfc2..37b3d3a6 100644 --- a/Sources/SmileID/Classes/SmileID.swift +++ b/Sources/SmileID/Classes/SmileID.swift @@ -6,7 +6,7 @@ import UIKit public class SmileID { /// The default value for `timeoutIntervalForRequest` for URLSession default configuration. public static let defaultRequestTimeout: TimeInterval = 60 - public static let version = "10.3.2" + public static let version = "10.3.3" @Injected var injectedApi: SmileIDServiceable public static var configuration: Config { config }