Skip to content

Commit

Permalink
Bump version to 1.0.0-beta.35-SNAPSHOT; Improve docs; Add missing cha…
Browse files Browse the repository at this point in the history
…ngeling entry (#64)
  • Loading branch information
DzmitryFomchyn authored Jul 20, 2022
1 parent 937c32d commit dc33036
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog for the Mapbox Search SDK for Android

## 1.0.0-beta.35-SNAPSHOT

### Mapbox dependencies
- Search Native SDK `0.57.0`
- Common SDK `22.1.0-beta.1`
- Kotlin `1.5.31`



## 1.0.0-beta.34

### Breaking changes
Expand All @@ -8,6 +17,7 @@

### New features
- [CORE] `MapboxSearchSdk.createSearchEngine(ApiType, SearchEngineSettings)`, and `MapboxSearchSdk.createSearchEngineWithBuiltInDataProviders(ApiType, SearchEngineSettings)` functions are available that allow to choose API Type. Note that `ApiType.GEOCODING` is the only API Type available publicly.
- [UI] `SearchResultsView.Configuration` accepts a new optional argument `apiType` used for the `SearchEngine` initialization.

### Mapbox dependencies
- Search Native SDK `0.57.0`
Expand Down
2 changes: 1 addition & 1 deletion MapboxSearch/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android.enableJetifier=false
kotlin.code.style=official

# SDK version attributes
VERSION_NAME=1.0.0-beta.34
VERSION_NAME=1.0.0-beta.35-SNAPSHOT

# Artifact attributes
mapboxArtifactUserOrg=mapbox
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ public sealed interface SearchResult : Parcelable {
public val routablePoints: List<RoutablePoint>?

/**
* Result categories.
* Poi categories. Always empty for non-POI search results.
* @see types
*/
public val categories: List<String>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public sealed interface SearchSuggestion : Parcelable {
public val distanceMeters: Double?

/**
* Search suggestion categories.
* Poi categories. Always empty for non-POI suggestions.
* @see type
*/
public val categories: List<String>

Expand Down

0 comments on commit dc33036

Please sign in to comment.