Skip to content

Commit f27eba8

Browse files
author
James Wolfe
committed
Exposed place initializer
1 parent 30417f4 commit f27eba8

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

AtlasKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22

33
spec.name = "AtlasKit"
4-
spec.version = "0.1.3"
4+
spec.version = "0.1.4"
55
spec.license = "MIT"
66
spec.summary = "A swift library for quickly integrating a location search in your app."
77
spec.homepage = "https://github.com/appoly/AtlasKit"

Sources/AtlasKit/AtlasKitPlace.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class AtlasKitPlace {
3232

3333
// MARK: - Initializer
3434

35-
init(streetAddress: String? = nil, city: String? = nil, postcode: String? = nil, state: String? = nil, country: String? = nil, location: CLLocationCoordinate2D? = nil) {
35+
public init(streetAddress: String? = nil, city: String? = nil, postcode: String? = nil, state: String? = nil, country: String? = nil, location: CLLocationCoordinate2D? = nil) {
3636
self.streetAddress = streetAddress
3737
self.city = city
3838
self.postcode = postcode

0 commit comments

Comments
 (0)