Skip to content

Commit 2c66c68

Browse files
authored
Merge pull request #14 from codecat15/minor-fixes
updating the static property to public
2 parents 904e497 + fbc67cf commit 2c66c68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

HttpUtility.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |spec|
1616
#
1717

1818
spec.name = "HttpUtility"
19-
spec.version = "1.2.1"
19+
spec.version = "1.2.2"
2020
spec.summary = "HttpUtility is helpful in making HTTP requests in iOS application"
2121

2222
# This description is used to generate tags and improve search results.

HttpUtility/HttpUtility.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Foundation
1010

1111
public class HttpUtility
1212
{
13-
static let shared = HttpUtility()
13+
public static let shared = HttpUtility()
1414
public var authenticationToken : String? = nil
1515
public var customJsonDecoder : JSONDecoder? = nil
1616

0 commit comments

Comments
 (0)