diff --git a/.gemini/skills/android-maps-utils/SKILL.md b/.gemini/skills/android-maps-utils/SKILL.md index 24315df4b..063875da2 100644 --- a/.gemini/skills/android-maps-utils/SKILL.md +++ b/.gemini/skills/android-maps-utils/SKILL.md @@ -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 } ``` diff --git a/.release-please-manifest.json b/.release-please-manifest.json index de0c1f314..2fbf78c76 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.0.0" + ".": "5.0.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d344fd57..7dc794f77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/MIGRATION.md b/MIGRATION.md index 9fa8aa337..dae7306f7 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -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" } diff --git a/README.md b/README.md index 191de5bbe..336912d26 100644 --- a/README.md +++ b/README.md @@ -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 } ``` @@ -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 } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 6ac397f66..dd249ff65 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -49,7 +49,7 @@ tasks.register("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") { diff --git a/llm-integration-prompt.md b/llm-integration-prompt.md index 24315df4b..063875da2 100644 --- a/llm-integration-prompt.md +++ b/llm-integration-prompt.md @@ -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 } ```