Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #60 from camilamacedo86/RELEASE
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
camilamacedo86 authored Feb 28, 2019
2 parents 15363f4 + a2b5a98 commit a401151
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion FeedHenry.podspec
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
6 changes: 3 additions & 3 deletions FeedHenry/FH.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/


let FH_SDK_VERSION = "6.1.0"
let FH_SDK_VERSION = "6.2.0"

import Foundation
import AeroGearHttp
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -112,7 +112,7 @@ open class FH: NSObject {
*/
open class func `initWithCustomConfigName`(config: Config, completionHandler: @escaping CompletionBlock) -> Void {
setup(config: config, completionHandler: completionHandler)

}

/**
Expand Down
2 changes: 1 addition & 1 deletion FeedHenry/Sync/FHDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a401151

Please # to comment.