Skip to content

Commit

Permalink
fixing access level
Browse files Browse the repository at this point in the history
  • Loading branch information
henrik-dmg committed Jun 14, 2020
1 parent 0f46bff commit a030007
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion HPOpenWeather.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "HPOpenWeather"
s.version = "3.3.0"
s.version = "3.3.1"
s.summary = "Cross-platform framework to communicate with the OpenWeatherMap JSON API"

s.license = { :type => "MIT", :file => "LICENSE.md" }
Expand Down
6 changes: 3 additions & 3 deletions Sources/HPOpenWeather/HPOpenWeather.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ public final class HPOpenWeather {
public static let shared = HPOpenWeather()

/// The OpenWeatherMap API key to authorize requests
var apiKey : String?
public var apiKey : String?
/// The language that should be used in API responses
var language: RequestLanguage = .english
public var language: RequestLanguage = .english
/// The units that should be used to format the API responses
var units: RequestUnits = .metric
public var units: RequestUnits = .metric

// MARK: - Init

Expand Down

0 comments on commit a030007

Please sign in to comment.