Skip to content
Open
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
2 changes: 1 addition & 1 deletion .gemini/skills/android-maps-utils/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Add the necessary dependency to the app-level `build.gradle.kts` file:
```kotlin
dependencies {
// Google Maps Utility Library
implementation("com.google.maps.android:android-maps-utils:5.0.0") // x-release-please-version
implementation("com.google.maps.android:android-maps-utils:5.0.1") // x-release-please-version
}
```

Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "5.0.0"
".": "5.0.1"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [5.0.1](https://github.com/googlemaps/android-maps-utils/compare/v5.0.0...v5.0.1) (2026-08-03)


### Bug Fixes

* apply polygon styling to GeoJSON MultiPolygon features ([#1727](https://github.com/googlemaps/android-maps-utils/issues/1727)) ([67d7252](https://github.com/googlemaps/android-maps-utils/commit/67d7252e5c1cdf1556b7fc707e80c8372540036c))
* **visual-testing:** add UiScrollable chip scroll support for robust chip selection ([#1735](https://github.com/googlemaps/android-maps-utils/issues/1735)) ([6104d93](https://github.com/googlemaps/android-maps-utils/commit/6104d938b1e21a731d370974a496bafbed67bf59))

## [5.0.0](https://github.com/googlemaps/android-maps-utils/compare/v4.5.2...v5.0.0) (2026-07-15)


Expand Down
2 changes: 1 addition & 1 deletion MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If your project uses all utilities, you can import the aggregator artifact direc
```toml
# gradle/libs.versions.toml
[versions]
androidMapsUtils = "5.0.0" # x-release-please-version
androidMapsUtils = "5.0.1" # x-release-please-version

[libraries]
android-maps-utils = { group = "com.google.maps.android", name = "android-maps-utils", version.ref = "androidMapsUtils" }
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies {
// You do not need to add a separate dependency for the Maps SDK for Android
// since this library builds in the compatible version of the Maps SDK.
// The aggregator artifact transitively pulls in all submodules below.
implementation("com.google.maps.android:android-maps-utils:5.0.0") // x-release-please-version
implementation("com.google.maps.android:android-maps-utils:5.0.1") // x-release-please-version
}
```

Expand All @@ -59,15 +59,15 @@ Alternatively, depend only on the submodules your app needs:
```kotlin
dependencies {
// Base utilities: PolyUtil, SphericalUtil, collection managers, Street View metadata
implementation("com.google.maps.android:android-maps-utils-core:5.0.0") // x-release-please-version
implementation("com.google.maps.android:android-maps-utils-core:5.0.1") // x-release-please-version
// Marker clustering
implementation("com.google.maps.android:android-maps-utils-clustering:5.0.0") // x-release-please-version
implementation("com.google.maps.android:android-maps-utils-clustering:5.0.1") // x-release-please-version
// KML and GeoJSON import
implementation("com.google.maps.android:android-maps-utils-data:5.0.0") // x-release-please-version
implementation("com.google.maps.android:android-maps-utils-data:5.0.1") // x-release-please-version
// Heatmaps
implementation("com.google.maps.android:android-maps-utils-heatmaps:5.0.0") // x-release-please-version
implementation("com.google.maps.android:android-maps-utils-heatmaps:5.0.1") // x-release-please-version
// Marker icons and animation
implementation("com.google.maps.android:android-maps-utils-ui:5.0.0") // x-release-please-version
implementation("com.google.maps.android:android-maps-utils-ui:5.0.1") // x-release-please-version
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ tasks.register<Exec>("installAndLaunch") {
allprojects {
group = "com.google.maps.android"
// {x-release-please-start-version}
version = "5.0.0"
version = "5.0.1"
// {x-release-please-end}

plugins.withId("java") {
Expand Down
2 changes: 1 addition & 1 deletion llm-integration-prompt.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Add the necessary dependency to the app-level `build.gradle.kts` file:
```kotlin
dependencies {
// Google Maps Utility Library
implementation("com.google.maps.android:android-maps-utils:5.0.0") // x-release-please-version
implementation("com.google.maps.android:android-maps-utils:5.0.1") // x-release-please-version
}
```

Expand Down
Loading