Skip to content
This repository has been archived by the owner on Apr 8, 2023. It is now read-only.

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerome Tan authored and Jerome Tan committed Nov 7, 2018
1 parent 7a71db5 commit ab7b250
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LocationPicker/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.2</string>
<string>3.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
6 changes: 3 additions & 3 deletions LocationPicker/LocationItem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ open class LocationItem: NSObject, NSCoding {
}


open override var hashValue: Int {
open override var hash: Int {
if let coordinate = coordinate {
return "\(coordinate.latitude), \(coordinate.longitude)".hashValue
return "\(coordinate.latitude), \(coordinate.longitude)".hash
} else {
return mapItem.name?.hashValue ?? "".hashValue
return mapItem.name?.hash ?? "".hash
}
}

Expand Down
1 change: 1 addition & 0 deletions LocationPickerViewController.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Pod::Spec.new do |s|

s.platform = :ios, '8.0'
s.requires_arc = true
s.swift_version = '4.2'

s.source_files = 'LocationPicker/*.swift'

Expand Down

0 comments on commit ab7b250

Please sign in to comment.