Skip to content

Commit d2823eb

Browse files
fix: broken geolocated conformance (#152)
* fix: broken Geolocated conformance of Hit structure
1 parent 412e352 commit d2823eb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "algolia/algoliasearch-client-swift" ~> 8.2
1+
github "algolia/algoliasearch-client-swift" ~> 8.4
22
github "apple/swift-log" ~> 1.3

InstantSearch.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Pod::Spec.new do |s|
1515

1616
s.subspec "Insights" do |ss|
1717
ss.source_files = 'Sources/InstantSearchInsights/**/*.{swift}'
18-
ss.dependency 'AlgoliaSearchClient', '~> 8.2'
18+
ss.dependency 'AlgoliaSearchClient', '~> 8.4'
1919
ss.dependency 'InstantSearchInsights', '~> 2.3'
2020
ss.ios.deployment_target = '9.0'
2121
ss.osx.deployment_target = '10.10'
@@ -25,7 +25,7 @@ Pod::Spec.new do |s|
2525

2626
s.subspec "Core" do |ss|
2727
ss.source_files = 'Sources/InstantSearchCore/**/*.{swift}'
28-
ss.dependency 'AlgoliaSearchClient', '~> 8.2'
28+
ss.dependency 'AlgoliaSearchClient', '~> 8.4'
2929
ss.dependency 'InstantSearch/Insights'
3030
ss.ios.deployment_target = '9.0'
3131
ss.osx.deployment_target = '10.10'

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ let package = Package(
2323
targets: ["InstantSearchInsights"])
2424
],
2525
dependencies: [
26-
.package(name: "AlgoliaSearchClient", url:"https://github.com/algolia/algoliasearch-client-swift", from: "8.2.0")
26+
.package(name: "AlgoliaSearchClient", url:"https://github.com/algolia/algoliasearch-client-swift", from: "8.4.0")
2727
],
2828
targets: [
2929
.target(

Sources/InstantSearchCore/Common/Geolocated.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
import Foundation
1010

1111
public protocol Geolocated {
12-
var geolocation: Point? { get }
12+
var geolocation: SingleOrList<Point>? { get }
1313
}

0 commit comments

Comments
 (0)