Skip to content

Commit

Permalink
Merge branch 'fix-crash-in-tfa' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
sagishm committed Jan 31, 2021
2 parents 31bdea9 + aac701d commit c677d81
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions Gigya.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'Gigya'
spec.version = '1.1.7'
spec.version = '1.1.8'
spec.license = 'Apache 2.0'
spec.homepage = 'https://developers.gigya.com/display/GD/Swift+SDK'
spec.author = 'Gigya SAP'
Expand All @@ -10,7 +10,7 @@ Pod::Spec.new do |spec|
your Swift application
DESC

spec.source = { :git => 'https://github.com/SAP/gigya-swift-sdk.git', :tag => 'core/v1.1.7' }
spec.source = { :git => 'https://github.com/SAP/gigya-swift-sdk.git', :tag => 'core/v1.1.8' }
spec.module_name = 'Gigya'
spec.swift_version = '5.3'

Expand Down
4 changes: 2 additions & 2 deletions GigyaAuth.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'GigyaAuth'
spec.version = '1.0.3'
spec.version = '1.0.4'
spec.license = 'Apache 2.0'
spec.homepage = 'https://developers.gigya.com/display/GD/Swift+Authentication+Library'
spec.author = 'Gigya SAP'
Expand All @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
authentication methods from the standard login flow
DESC

spec.source = { :git => 'https://github.com/SAP/gigya-swift-sdk.git', :tag => 'auth/v1.0.3' }
spec.source = { :git => 'https://github.com/SAP/gigya-swift-sdk.git', :tag => 'auth/v1.0.4' }
spec.module_name = 'GigyaAuth'
spec.swift_version = '5.3'

Expand Down
8 changes: 4 additions & 4 deletions GigyaAuth/GigyaAuth.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = T48CNFXFQH;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -370,7 +370,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.3;
MARKETING_VERSION = 1.0.4;
ONLY_ACTIVE_ARCH = NO;
PRODUCT_BUNDLE_IDENTIFIER = Gigya.GigyaAuth;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand All @@ -387,7 +387,7 @@
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = T48CNFXFQH;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -406,7 +406,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.3;
MARKETING_VERSION = 1.0.4;
PRODUCT_BUNDLE_IDENTIFIER = Gigya.GigyaAuth;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
8 changes: 4 additions & 4 deletions GigyaSwift.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2277,7 +2277,7 @@
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 91;
CURRENT_PROJECT_VERSION = 98;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 52P2295V75;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -2297,7 +2297,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.1.7;
MARKETING_VERSION = 1.1.8;
MODULEMAP_FILE = "";
MODULEMAP_PRIVATE_FILE = "";
ONLY_ACTIVE_ARCH = NO;
Expand Down Expand Up @@ -2334,7 +2334,7 @@
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 91;
CURRENT_PROJECT_VERSION = 98;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 52P2295V75;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -2354,7 +2354,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.1.7;
MARKETING_VERSION = 1.1.8;
MODULEMAP_FILE = "";
MODULEMAP_PRIVATE_FILE = "";
OTHER_LDFLAGS = (
Expand Down
4 changes: 2 additions & 2 deletions GigyaSwift/Global/Resolvers/Tfa/TFAResolverFactory.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ public class TFAResolverFactory<A: GigyaAccountProtocol> {

public func getResolver<T: TFAResolver<A>>(for resolver: T.Type) -> T {

let resolverA = TFAResolver<A>.init(businessApiDelegate: businessApiDelegate, interruption: interruption, completionHandler: completionHandler)
let resolverA = T.init(businessApiDelegate: businessApiDelegate, interruption: interruption, completionHandler: completionHandler)

return resolverA as! T
return resolverA

}
}
2 changes: 1 addition & 1 deletion GigyaSwift/Models/Config/InternalConfig.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Foundation

struct InternalConfig {
struct General {
internal static let version = "\(GigyaDefinitions.versionPrefix ?? "")ios_swift_1.1.7"
internal static let version = "\(GigyaDefinitions.versionPrefix ?? "")ios_swift_1.1.8"
internal static let sdkDomain = "com.gigya.GigyaSDK"
internal static let defaultLang = "en"
}
Expand Down
4 changes: 2 additions & 2 deletions GigyaTfa.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'GigyaTfa'
spec.version = '1.0.10'
spec.version = '1.0.11'
spec.license = 'Apache 2.0'
spec.homepage = 'https://developers.gigya.com/display/GD/Swift+v1.x+TFA+Library'
spec.author = 'Gigya SAP'
Expand All @@ -10,7 +10,7 @@ Pod::Spec.new do |spec|
within your iOS application.
DESC

spec.source = { :git => 'https://github.com/SAP/gigya-swift-sdk.git', :tag => 'tfa/v1.0.10' }
spec.source = { :git => 'https://github.com/SAP/gigya-swift-sdk.git', :tag => 'tfa/v1.0.11' }
spec.module_name = 'GigyaTfa'
spec.swift_version = '5.3'

Expand Down
8 changes: 4 additions & 4 deletions GigyaTfa/GigyaTfa.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 33;
CURRENT_PROJECT_VERSION = 34;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = T48CNFXFQH;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -486,7 +486,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.10;
MARKETING_VERSION = 1.0.11;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = Gigya.GigyaTfa;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand All @@ -508,7 +508,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 33;
CURRENT_PROJECT_VERSION = 34;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = T48CNFXFQH;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -527,7 +527,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.10;
MARKETING_VERSION = 1.0.11;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = Gigya.GigyaTfa;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down

0 comments on commit c677d81

Please sign in to comment.