Skip to content

[DO NOT MERGE] bump deps #321

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,9 @@ workflows:
- sample-instrumentation-tests:
requires:
- prepare-and-assemble
- publish-snapshots:
requires:
- prepare-and-assemble
# - pitest-validate:
# requires:
# - unit-tests
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,5 @@ fun BaseRawSearchResult.mapToCore() = CoreSearchResult(
userRecordPriority,
action?.mapToCore(),
serverIndex,
null,
)
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ fun createTestCoreSearchResult(
userRecordId,
userRecordPriority,
action,
serverIndex
serverIndex,
null,
)

@Suppress("LongParameterList")
Expand Down Expand Up @@ -256,7 +257,8 @@ fun SearchResult.copy(
userRecordId,
userRecordPriority,
action,
serverIndex
serverIndex,
null,
)

fun createCoreSearchAddressRegion(
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.9.0-rc.1
VERSION_NAME=2.10.0-2db9d21-SNAPSHOT

# 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 @@ -44,10 +44,10 @@ ext {
mapbox_maps_version = '11.11.0-rc.1'
mapbox_turf_version = '6.15.0'

common_sdk_version = '24.11.0-rc.1'
common_sdk_version = '24.11.0-SNAPSHOT-03-19--10-27.git-2db9d21'
mapbox_base_version = '0.8.0'

search_native_version = '2.9.0-rc.1'
search_native_version = '2.9.0-SNAPSHOT-03-19--10-27.git-2db9d21'

detekt_version = '1.19.0'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ internal object RetrieveUtils {
0,
suggestAction,
null,
null,
)
}
}