diff --git a/Iguazu.podspec b/Iguazu.podspec index 6d7c69f..44fafc6 100644 --- a/Iguazu.podspec +++ b/Iguazu.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = "Iguazu" - s.version = "1.4.1" + s.version = "1.4.2" s.summary = "An aviation file format parser written in Swift" s.description = <<-DESC Iguazu is a new project and still work in progress. The goal is to have a Swift framework with support for various popular aviation file formats to facilitate development of apps for pilots on the iOS platform. diff --git a/Iguazu/CUP/Waypoint.swift b/Iguazu/CUP/Waypoint.swift index 120b4fe..a38ed84 100644 --- a/Iguazu/CUP/Waypoint.swift +++ b/Iguazu/CUP/Waypoint.swift @@ -9,11 +9,11 @@ import Foundation public struct Waypoint { - let title: String - let code: String - let latitude: Double - let longitude: Double - let elevation: Double + public let title: String + public let code: String + public let latitude: Double + public let longitude: Double + public let elevation: Double } public extension Waypoint {