Skip to content

Commit d3a9e08

Browse files
committed
fix geoJsonString access
1 parent a48ea79 commit d3a9e08

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Iguazu.podspec

+1-1
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.2.0"
11+
s.version = "1.2.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.

Iguazu/AirSpace.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ extension AirSpaceAltitude {
330330
}
331331

332332
extension AirSpace: GeoJsonEncodable {
333-
var geoJsonString: String? {
333+
public var geoJsonString: String? {
334334
let coordinatesArray: [[Double]] = (self.polygonCoordinates+[self.polygonCoordinates[0]]).reversed().map { [$0.longitude, $0.latitude] }
335335

336336
let dict: NSDictionary = [

Iguazu/GeoJsonEncodable.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
import Foundation
1010

11-
protocol GeoJsonEncodable {
11+
public protocol GeoJsonEncodable {
1212
var geoJsonString: String? { get }
1313
}

Iguazu/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.2.0</string>
18+
<string>1.2.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)