Skip to content

Commit

Permalink
Merge pull request #20 from onurhuseyincantay/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
onurhuseyincantay authored Oct 12, 2020
2 parents a80643a + f260c66 commit 434fda9
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 277 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img height="250" src="Screenshots/Hover.png"/>
</p>

# Version 1.0.5
# Version 1.0.6

[![apm](https://img.shields.io/apm/l/vim-mode.svg)](https://github.com/onurhuseyincantay/Hover/blob/develop/License.md)[![CocoaPods compatible](https://img.shields.io/cocoapods/v/HoverKitSDK.svg)](https://cocoapods.org/pods/HoverKitSDK)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
Expand All @@ -12,10 +12,10 @@
## Currently Available
| Platform | Version |
| ------------- |:------------- |
| iOS | 13.0 |
| tvOS | 13.0 |
| iOS | 12.0 |
| tvOS | 10.0 |
| macOS | 10.15 |
| watchOS | 6.0 |
| watchOS | 3.0 |
| macCatalyst | 13.0 |

Hover is a Network layer which uses Apple's new framework `Combine` and provides async network calls with different kind of request functions.
Expand All @@ -26,13 +26,13 @@ The main benefit to use Hover is to abstract the networking layer as much as pos
#### Cocoapods Installation
```swift
target 'MyApp' do
pod 'HoverKitSDK', "~> 1.0.5"
pod 'HoverKitSDK', "~> 1.0.6"
end
```

#### Carthage Installation
```swift
github "onurhuseyincantay/Hover" ~> 1.0.5
github "onurhuseyincantay/Hover" ~> 1.0.6
```
**if you are using Xcode 12 there are additional steps to take:**
1. create a carthage.sh file
Expand Down
18 changes: 10 additions & 8 deletions Sources/Hover.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -500,7 +500,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = iphoneos;
Expand All @@ -525,7 +525,8 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "$(SRCROOT)/Hover/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
"IPHONEOS_DEPLOYMENT_TARGET[sdk=macosx*]" = 12.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -538,8 +539,8 @@
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
TVOS_DEPLOYMENT_TARGET = 13.0;
WATCHOS_DEPLOYMENT_TARGET = 6.0;
TVOS_DEPLOYMENT_TARGET = 10.0;
WATCHOS_DEPLOYMENT_TARGET = 3.0;
};
name = Debug;
};
Expand All @@ -556,7 +557,8 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "$(SRCROOT)/Hover/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
"IPHONEOS_DEPLOYMENT_TARGET[sdk=macosx*]" = 12.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -568,8 +570,8 @@
SUPPORTS_MACCATALYST = YES;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
TVOS_DEPLOYMENT_TARGET = 13.0;
WATCHOS_DEPLOYMENT_TARGET = 6.0;
TVOS_DEPLOYMENT_TARGET = 10.0;
WATCHOS_DEPLOYMENT_TARGET = 3.0;
};
name = Release;
};
Expand Down
8 changes: 4 additions & 4 deletions Sources/HoverKitSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Pod::Spec.new do |spec|

spec.name = "HoverKitSDK"
spec.swift_versions = "5.0"
spec.version = "1.0.4"
spec.version = "1.0.6"
spec.summary = "Async Network Library"

# This description is used to generate tags and improve search results.
Expand Down Expand Up @@ -69,10 +69,10 @@ Pod::Spec.new do |spec|
# spec.platform = :ios, "10.0"

# When using multiple platforms
spec.ios.deployment_target = "13.0"
spec.ios.deployment_target = "12.0"
spec.osx.deployment_target = "10.15"
spec.watchos.deployment_target = "6.0"
spec.tvos.deployment_target = "13.0"
spec.watchos.deployment_target = "3.0"
spec.tvos.deployment_target = "10.0"


# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit 434fda9

Please sign in to comment.