Skip to content

Commit

Permalink
Merge pull request #108 from algolia/develop
Browse files Browse the repository at this point in the history
Patch 7.0.1
  • Loading branch information
VladislavFitz authored Jul 28, 2020
2 parents d25f929 + 263ca27 commit 9c65bde
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github "algolia/algoliasearch-client-swift" ~> 8.0
github "algolia/instantsearch-ios-insights" ~> 2.3.1
github "algolia/instantsearch-ios-insights" ~> 2.3
github "apple/swift-log" ~> 1.3
2 changes: 1 addition & 1 deletion InstantSearch.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Pod::Spec.new do |s|

s.subspec "Core" do |ss|
ss.source_files = 'Sources/InstantSearchCore/**/*.{swift}'
ss.dependency 'AlgoliaSearchClient', '~> 8.0.0'
ss.dependency 'AlgoliaSearchClient', '~> 8.0'
ss.dependency 'InstantSearchInsights', '~> 2.3'
ss.ios.deployment_target = '8.0'
ss.osx.deployment_target = '10.10'
Expand Down
4 changes: 2 additions & 2 deletions Sources/InstantSearchCore/Hits/HitsConnector.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class HitsConnector<Hit: Codable>: Connection {
public extension HitsConnector {

convenience init(searcher: SingleIndexSearcher,
interactor: HitsInteractor<Hit>,
interactor: HitsInteractor<Hit> = .init(),
filterState: FilterState? = .none) {
self.init(searcher: searcher,
interactor: interactor,
Expand All @@ -54,7 +54,7 @@ public extension HitsConnector {
convenience init(appID: ApplicationID,
apiKey: APIKey,
indexName: IndexName,
interactor: HitsInteractor<Hit>,
interactor: HitsInteractor<Hit> = .init(),
filterState: FilterState? = .none) {
let searcher = SingleIndexSearcher(appID: appID,
apiKey: apiKey,
Expand Down

0 comments on commit 9c65bde

Please sign in to comment.