Skip to content

Commit

Permalink
[SSDK-851] Release Android v2.2.0-rc.1 (#247)
Browse files Browse the repository at this point in the history
* build: updating mapbox search sdk and mapbox common sdk

* chore: updating to version 2.2.0

* chore: changing version to rc

* build: updating mapbox search sdk and mapbox common sdk

* chore: updating to version 2.2.0

* chore: changing version to rc

* docs: updating changelog

* build: fixing sample build option
  • Loading branch information
mikeringrose committed Jun 5, 2024
1 parent 66f3383 commit 075e8f6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 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

## 2.2.0-rc.1

### New features
- Adding support for [`ApiType.SEARCH_BOX`](https://docs.mapbox.com/api/search/search-box/)

### Mapbox dependencies
- Search Native SDK `2.1.0`
- Common SDK `24.4.0`

## 2.1.0

### New features
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=2.1.0
VERSION_NAME=2.2.0-rc.1

# Artifact attributes
mapboxArtifactUserOrg=mapbox
Expand Down
4 changes: 2 additions & 2 deletions MapboxSearch/gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ ext {
pitest_version = '1.6.7'

mapbox_maps_version = '11.0.0'
common_sdk_version = '24.4.0-beta.2'
common_sdk_version = '24.4.0'
mapbox_base_version = '0.8.0'

search_native_version = '2.0.0-beta.18'
search_native_version = '2.1.0'

detekt_version = '1.19.0'

Expand Down
2 changes: 1 addition & 1 deletion MapboxSearch/sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def apiTypeString = null
if (project.hasProperty('API_TYPE')) {
apiTypeString = String.valueOf(project.property('API_TYPE'))
} else if (System.getenv('API_TYPE') != null) {
apiTypeString = String.valueOf(System.getenv('ENABLE_SEARCH_BOX'))
apiTypeString = String.valueOf(System.getenv('API_TYPE'))
}

if (apiTypeString == "SEARCH_BOX") {
Expand Down

0 comments on commit 075e8f6

Please sign in to comment.