Skip to content

Commit

Permalink
Merge pull request #5 from bourvill/release/2.2.0
Browse files Browse the repository at this point in the history
Release/2.2.0
  • Loading branch information
bourvill authored Jun 12, 2019
2 parents 31dffbf + f159a01 commit c7910a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion OpenWeatherKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OpenWeatherKit"
s.version = "2.1.0"
s.version = "2.2.0"
s.summary = "Use easly OpenWeatherMap with simple api"
s.description = <<-DESC
OpenWeatherKit is a simple library for OpenWeatherMap API
Expand Down
2 changes: 1 addition & 1 deletion Sources/Model/Sys.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import Foundation

public struct Sys: Codable {
public let id: Int
public let id: Int?
public let type: Int?
public let message: Double?
public let country: String?
Expand Down
2 changes: 1 addition & 1 deletion Sources/Model/WeatherData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import Foundation

public struct WeatherData: Codable {
public let id: Int
public let id: Int?
public let main: String?
public let description: String?
public let icon: String?
Expand Down

0 comments on commit c7910a8

Please sign in to comment.