diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c32e213d..3c33b6dac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,8 @@ Guide: https://keepachangelog.com/en/1.0.0/ - [Core] Remove Swifter library dependency from MapboxSearch target (only used in Test targets) - [Core] Change AbstractSearchEngine.init `supportSBS: Bool = false` parameter to `apiType: ApiType = .SBS`. This changes the default API engine for discover/category and other API requests to SBS. Add ApiType enum to represent non-Autofill and non-PlaceAutocomplete SearchEngine API types. +**MapboxCoreSearch**: v2.0.0-alpha.13 + ## 2.0.0-rc.1 - [Discover] Fix charging station category canonical ID diff --git a/Cartfile b/Cartfile index a952c3ee0..79d73d1bf 100644 --- a/Cartfile +++ b/Cartfile @@ -1,2 +1,2 @@ -binary "https://api.mapbox.com/downloads/v2/carthage/search-core-sdk/MapboxCoreSearch.xcframework.json" == 2.0.0-alpha.9 +binary "https://api.mapbox.com/downloads/v2/carthage/search-core-sdk/MapboxCoreSearch.xcframework.json" == 2.0.0-alpha.13 binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" == 24.0.0 diff --git a/Cartfile.resolved b/Cartfile.resolved index bd4c17c3e..c3afef44a 100644 --- a/Cartfile.resolved +++ b/Cartfile.resolved @@ -1,2 +1,2 @@ binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" "24.0.0" -binary "https://api.mapbox.com/downloads/v2/carthage/search-core-sdk/MapboxCoreSearch.xcframework.json" "2.0.0-alpha.9" +binary "https://api.mapbox.com/downloads/v2/carthage/search-core-sdk/MapboxCoreSearch.xcframework.json" "2.0.0-alpha.13" diff --git a/Examples/SearchExamples.xcodeproj/project.pbxproj b/Examples/SearchExamples.xcodeproj/project.pbxproj index 29f5bb320..29e226b0d 100644 --- a/Examples/SearchExamples.xcodeproj/project.pbxproj +++ b/Examples/SearchExamples.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 52; + objectVersion = 54; objects = { /* Begin PBXBuildFile section */ diff --git a/Package.swift b/Package.swift index 446db8208..d1f0e131b 100644 --- a/Package.swift +++ b/Package.swift @@ -4,7 +4,7 @@ import PackageDescription import Foundation -let (coreSearchVersion, coreSearchVersionHash) = ("2.0.0-alpha.9", "ca01ac00669cc6a4675746e1c458703495a9b356b19a3dc4397ee8478636da99") +let (coreSearchVersion, coreSearchVersionHash) = ("2.0.0-alpha.13", "bbd236f9aae5a06c23a0541e79d7196e569880ef3e8cfbdd7a906875dde3b884") let commonMinVersion = Version("24.0.0") let commonMaxVersion = Version("25.0.0")