Skip to content

Commit 088669f

Browse files
committed
fix access
1 parent f43a36b commit 088669f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Iguazu.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = "Iguazu"
11-
s.version = "1.4"
11+
s.version = "1.4.1"
1212
s.summary = "An aviation file format parser written in Swift"
1313
s.description = <<-DESC
1414
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.
@@ -26,5 +26,5 @@ For more details on the Iguazu Falls: https://en.wikipedia.org/wiki/Iguazu_Falls
2626
s.platform = :ios, "10.0"
2727
s.source = { :git => "https://github.com/ekurutepe/Iguazu.git", :tag => "#{s.version}" }
2828
s.source_files = "Iguazu", "Iguazu/**/*.{swift}"
29-
s.swift_version = "5"
29+
s.swift_version = "5.0"
3030
end

Iguazu/CUP/Waypoint.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88

99
import Foundation
1010

11-
struct Waypoint {
11+
public struct Waypoint {
1212
let title: String
1313
let code: String
1414
let latitude: Double
1515
let longitude: Double
1616
let elevation: Double
1717
}
1818

19-
extension Waypoint {
19+
public extension Waypoint {
2020
static func waypoints(withContentsOf url: URL) -> [Waypoint] {
2121
var cupString = ""
2222
do {

0 commit comments

Comments
 (0)