Skip to content

Commit

Permalink
Bump search native
Browse files Browse the repository at this point in the history
  • Loading branch information
DzmitryFomchyn committed Nov 18, 2024
1 parent fa6269b commit a82154b
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog for the Mapbox Search SDK for Android

## 2.6.1

### Bug fixes
- Fixed `OpenHours` parsing for the Search Box Api type.

### Mapbox dependencies
- Search Native SDK `2.6.2`
- Common SDK `24.8.0`



## 2.6.0

### Mapbox dependencies
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.6.0
VERSION_NAME=2.6.1

# Artifact attributes
mapboxArtifactUserOrg=mapbox
Expand Down
2 changes: 1 addition & 1 deletion MapboxSearch/gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ext {
common_sdk_version = '24.8.0'
mapbox_base_version = '0.8.0'

search_native_version = '2.6.0'
search_native_version = '2.6.2'

detekt_version = '1.19.0'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ internal class ReverseGeocodingSearchIntegrationTest : BaseTest() {
openHours = OpenHours.Scheduled(
periods = listOf(
OpenPeriod(
open = WeekTimestamp(WeekDay.MONDAY, 9, 0),
closed = WeekTimestamp(WeekDay.MONDAY, 23, 45)
open = WeekTimestamp(WeekDay.SUNDAY, 9, 0),
closed = WeekTimestamp(WeekDay.SUNDAY, 23, 45)
)
)
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -661,8 +661,8 @@ internal class SearchEngineIntegrationTest : BaseTest() {
OpenHours.Scheduled(
periods = listOf(
OpenPeriod(
open = WeekTimestamp(WeekDay.SATURDAY, 7, 0),
closed = WeekTimestamp(WeekDay.SATURDAY, 20, 0)
open = WeekTimestamp(WeekDay.FRIDAY, 7, 0),
closed = WeekTimestamp(WeekDay.FRIDAY, 20, 0)
)
)
), openHours
Expand Down

0 comments on commit a82154b

Please sign in to comment.