Skip to content

Commit

Permalink
Fixing file privacy problems
Browse files Browse the repository at this point in the history
  • Loading branch information
arcadekenan committed Apr 15, 2019
1 parent 61abc22 commit c43fb75
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion HTTPLayer.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "HTTPLayer"
s.version = "0.0.1"
s.version = "0.0.3"
s.summary = "Straight to the Point HTTP Networking for JSON Services in Swift"
s.swift_version = '5.0'

Expand Down
8 changes: 8 additions & 0 deletions HTTPLayer.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
A11872FC2257F15C002CD130 /* HTTPManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A11872FB2257F15C002CD130 /* HTTPManager.swift */; };
A11873042258516F002CD130 /* OSlog.swift in Sources */ = {isa = PBXBuildFile; fileRef = A11873032258516F002CD130 /* OSlog.swift */; };
A129AD0322642A40001AE94F /* HTTP.swift in Sources */ = {isa = PBXBuildFile; fileRef = A129AD0222642A40001AE94F /* HTTP.swift */; };
A129AD052264305B001AE94F /* HTTPLayer.podspec in Resources */ = {isa = PBXBuildFile; fileRef = A129AD042264305B001AE94F /* HTTPLayer.podspec */; };
A129AD0722643087001AE94F /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = A129AD0622643087001AE94F /* README.md */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand All @@ -38,6 +40,8 @@
A11872FF225800E5002CD130 /* CHANGELOG.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = "<group>"; };
A11873032258516F002CD130 /* OSlog.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OSlog.swift; sourceTree = "<group>"; };
A129AD0222642A40001AE94F /* HTTP.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTP.swift; sourceTree = "<group>"; };
A129AD042264305B001AE94F /* HTTPLayer.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HTTPLayer.podspec; sourceTree = SOURCE_ROOT; };
A129AD0622643087001AE94F /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -85,6 +89,8 @@
A129AD0222642A40001AE94F /* HTTP.swift */,
A11872E02257E26B002CD130 /* Info.plist */,
A11872FF225800E5002CD130 /* CHANGELOG.md */,
A129AD042264305B001AE94F /* HTTPLayer.podspec */,
A129AD0622643087001AE94F /* README.md */,
);
path = HTTPLayer;
sourceTree = "<group>";
Expand Down Expand Up @@ -224,6 +230,8 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
A129AD0722643087001AE94F /* README.md in Resources */,
A129AD052264305B001AE94F /* HTTPLayer.podspec in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
5 changes: 3 additions & 2 deletions HTTPLayer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
## [0.0.3]
### Modified
- Fixing file privacy problems

## [0.0.2]
### Added
Expand Down
3 changes: 1 addition & 2 deletions HTTPLayer/HTTP.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
import Foundation

///HTTP Network Manager
class HTTP {
public class HTTP {

public static let config: HTTPInit = HTTPInit()
public static let request: HTTPManager = HTTPManager(config)

}
2 changes: 1 addition & 1 deletion HTTPLayer/Source/Manager/HTTPManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import Foundation
import os.log

class HTTPManager {
public class HTTPManager {

private var config: HTTPInit
public init(_ config: HTTPInit) {
Expand Down

0 comments on commit c43fb75

Please sign in to comment.