From 5bcbc520486830f89bc75649d8f742a87d2829e7 Mon Sep 17 00:00:00 2001 From: Camila Macedo Date: Thu, 28 Feb 2019 12:41:39 +0000 Subject: [PATCH 1/2] Add Changelog (RHMAP-22020) --- CHANGELOG.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a070f08..066a163 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,19 @@ # CHANGELOG - FeedHenry iOS SDK +## 6.2.0 - 2019-02-28 +* RHMAP-22020: Allow SDK to work with new default Xcode 10 build system + ## 6.1.0 - 2019-01-28 * RHMAP-22042: Swift Sync client uses excessive memory when adding/updating records in offline mode * RHMAP-22053: Adding ability to call init with custom fhconfig file name ## [6.0.0](https://issues.jboss.org/issues/?jql=project%20%3D%20FH%20AND%20fixVersion%20%3D%20ios-swift-6.0.0) - 2017-10-17 -* [FH-4247](https://issues.jboss.org/browse/FH-4247) - Update ReachabilitySwift dependency on fh-ios-swift-sdk +* [FH-4247](https://issues.jboss.org/browse/FH-4247) - Update ReachabilitySwift dependency on fh-ios-swift-sdk * [FH-4054](https://issues.jboss.org/browse/FH-4054) - the FeedHenry Swift SDK don't use the cache cloud app url if the init request is failed * [FH-3792](https://issues.jboss.org/browse/FH-3792) - [Swift 4] update fh-ios-swift-sdk * [FH-3794](https://issues.jboss.org/browse/FH-3794) - Set deployment target to iOS 9 on fh-ios-swift-sdk -* [FH-3974](https://issues.jboss.org/browse/FH-3974) - Move fh-ios-swift-sdk from Travis CI to CircleCI +* [FH-3974](https://issues.jboss.org/browse/FH-3974) - Move fh-ios-swift-sdk from Travis CI to CircleCI ## 5.0.5 - 2017-07-12 * RHMAP-16650 Check if connection tag is disabled From a2b5a98d28e32c5ddc3e23433629719bbdc3e5e1 Mon Sep 17 00:00:00 2001 From: Camila Macedo Date: Thu, 28 Feb 2019 12:42:00 +0000 Subject: [PATCH 2/2] Bump version RHMAP-22020 --- FeedHenry.podspec | 2 +- FeedHenry/FH.swift | 6 +++--- FeedHenry/Sync/FHDefines.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/FeedHenry.podspec b/FeedHenry.podspec index be892d3..7fa4562 100644 --- a/FeedHenry.podspec +++ b/FeedHenry.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FeedHenry' - s.version = '6.1.0' + s.version = '6.2.0' s.summary = 'FeedHenry Swift iOS Software Development Kit' s.homepage = 'http://feedhenry.org/' s.social_media_url = 'https://twitter.com/feedhenry' diff --git a/FeedHenry/FH.swift b/FeedHenry/FH.swift index 45e035e..d69dc23 100644 --- a/FeedHenry/FH.swift +++ b/FeedHenry/FH.swift @@ -16,7 +16,7 @@ */ -let FH_SDK_VERSION = "6.1.0" +let FH_SDK_VERSION = "6.2.0" import Foundation import AeroGearHttp @@ -80,7 +80,7 @@ open class FH: NSObject { This must be called before any other API methods can be called. The initialization process runs asynchronously so that it won't block the main UI - thread. All the same constraints that apply to init method apply to this method. + thread. All the same constraints that apply to init method apply to this method. It is advised that this method is only called once. You need to make sure it is successful before calling any other API methods. The @@ -112,7 +112,7 @@ open class FH: NSObject { */ open class func `initWithCustomConfigName`(config: Config, completionHandler: @escaping CompletionBlock) -> Void { setup(config: config, completionHandler: completionHandler) - + } /** diff --git a/FeedHenry/Sync/FHDefines.h b/FeedHenry/Sync/FHDefines.h index 908e28e..e21322d 100644 --- a/FeedHenry/Sync/FHDefines.h +++ b/FeedHenry/Sync/FHDefines.h @@ -26,7 +26,7 @@ typedef NS_ENUM(NSInteger, FH_ACTION) { #define FH_CLOUD @"cloud" #define FH_AUTH @"auth" #define FH_INIT @"init" -#define FH_SDK_VERSION @"6.1.0" +#define FH_SDK_VERSION @"6.2.0" #define SESSION_TOKEN_KEY @"sessionToken" #define VERIFY_SESSION_PATH @"/box/srv/1.1/admin/authpolicy/verifysession" #define REVOKE_SESSION_PATH @"/box/srv/1.1/admin/authpolicy/revokesession"