diff --git a/CHANGELOG.md b/CHANGELOG.md index 3984b9bd..aaf326a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,12 @@ # Release Notes -## [Unreleased] +## 10.2.7 ### Changed * Replaced the Zip library to introduce in memory ziping during file upload * Remove `prodUrl` and `testURl` from Config model struct since the `prod_url` and `test_url` keys are no longer used in the `smile_config.json` file. * Disabled dark mode as we fix theming across the sdk +* Fixed ambigious file paths on responses ## 10.2.6 diff --git a/SmileID.podspec b/SmileID.podspec index bbc35546..cdf63eb8 100644 --- a/SmileID.podspec +++ b/SmileID.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'SmileID' - s.version = '10.2.6' + s.version = '10.2.7' 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'} - s.source = { :git => "https://github.com/smileidentity/ios.git", :tag => "v10.2.6" } + s.source = { :git => "https://github.com/smileidentity/ios.git", :tag => "v10.2.7" } s.ios.deployment_target = '13.0' s.dependency 'ZIPFoundation', '~> 0.9' s.dependency 'lottie-ios', '~> 4.4.2' diff --git a/Sources/SmileID/Classes/SmileID.swift b/Sources/SmileID/Classes/SmileID.swift index 60b60fae..1c5a17b3 100644 --- a/Sources/SmileID/Classes/SmileID.swift +++ b/Sources/SmileID/Classes/SmileID.swift @@ -3,7 +3,7 @@ import SwiftUI import UIKit public class SmileID { - public static let version = "10.2.6" + public static let version = "10.2.7" @Injected var injectedApi: SmileIDServiceable public static var configuration: Config { config }